diff options
Diffstat (limited to 'src/main/kotlin/dulkirmod/huds/KeyHud.kt')
-rw-r--r-- | src/main/kotlin/dulkirmod/huds/KeyHud.kt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main/kotlin/dulkirmod/huds/KeyHud.kt b/src/main/kotlin/dulkirmod/huds/KeyHud.kt deleted file mode 100644 index 597696e..0000000 --- a/src/main/kotlin/dulkirmod/huds/KeyHud.kt +++ /dev/null @@ -1,16 +0,0 @@ -package dulkirmod.huds -import cc.polyfrost.oneconfig.hud.TextHud -import dulkirmod.features.chat.DungeonKeyDisplay - - -class KeyHud : TextHud(false) { - - override fun getLines(lines: MutableList<String>?, example: Boolean) { - if (example) { - lines?.add(0, "Wither Key Display") - return - } - if (DungeonKeyDisplay.hasKey) - lines?.add(0, "Key Obtained") - } -}
\ No newline at end of file |