From 6e1a09ba49e91b6d4f67aadfb877f4b96d6afbec Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 23 Apr 2023 23:54:51 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B8=D0=BC=D1=8F=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8?= =?UTF-8?q?=20=D0=B2=20TODO()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt index f41ca2d6..d7780df2 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt @@ -458,12 +458,12 @@ class Starbound : ISBFileLocator { state.setTableFunction("npcVariant", this) { args -> // Json root.npcVariant(String species, String npcType, float level, [unsigned seed], [Json parameters]) - TODO() + TODO("npcVariant") } state.setTableFunction("projectileGravityMultiplier", this) { args -> // float root.projectileGravityMultiplier(String projectileName) - TODO() + TODO("projectileGravityMultiplier") } state.setTableFunction("projectileConfig", this) { args -> @@ -631,13 +631,13 @@ class Starbound : ISBFileLocator { state.setTableFunction("npcPortrait", this) { args -> // JsonArray root.npcPortrait(String portraitMode, String species, String npcType, float level, [unsigned seed], [Json parameters]) // Generates an NPC with the specified type, level, seed and parameters and returns a portrait in the given portraitMode as a list of drawables. - TODO() + TODO("npcPortrait") } state.setTableFunction("monsterPortrait", this) { args -> // JsonArray root.monsterPortrait(String typeName, [Json parameters]) // Generates a monster of the given type with the given parameters and returns its portrait as a list of drawables. - TODO() + TODO("monsterPortrait") } state.setTableFunction("isTreasurePool", this) { args ->