aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/config/DulkirHud.kt
blob: 038e1f6fe59acf224104b4c21573c9bbf78c057d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package dulkirmod.config
import cc.polyfrost.oneconfig.hud.TextHud
import dulkirmod.features.chat.DungeonKeyDisplay


class DulkirHud : TextHud(true) {


    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")
    }
}