diff --git a/plugin-playground/src/main/kotlin/IdentifyClueScrolls/plugin.kt b/plugin-playground/src/main/kotlin/IdentifyClueScrolls/plugin.kt index 1b1fc67..8a80438 100644 --- a/plugin-playground/src/main/kotlin/IdentifyClueScrolls/plugin.kt +++ b/plugin-playground/src/main/kotlin/IdentifyClueScrolls/plugin.kt @@ -17,7 +17,7 @@ class plugin : Plugin() { when(entry?.type) { MiniMenuType.OBJ -> { val index = entry.subjectIndex - val def = ObjTypeList.get(index.toInt()) + // val def = ObjTypeList.get(index.toInt()) if(entry.verb.equals("read", true)) { if(EASY.contains(index.toInt())) { entry.subject = entry.subject + " (easy)" @@ -28,6 +28,7 @@ class plugin : Plugin() { } } } + else -> {} } }