diff options
author | Linnea Gräf <nea@nea.moe> | 2024-12-31 17:51:29 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-12-31 17:51:29 +0100 |
commit | bb124fe91d310d08fbf17ea8972d9e7b8b89b319 (patch) | |
tree | e392cc41284d06cdcd78eb073ee8212d620ee757 /src/main/kotlin/util/skyblock | |
parent | a50de1601873d5c750c88bef9468b24fdd923ef0 (diff) | |
download | Firmament-bb124fe91d310d08fbf17ea8972d9e7b8b89b319.tar.gz Firmament-bb124fe91d310d08fbf17ea8972d9e7b8b89b319.tar.bz2 Firmament-bb124fe91d310d08fbf17ea8972d9e7b8b89b319.zip |
fix: Dungeon swords not being recognized for reforges
Diffstat (limited to 'src/main/kotlin/util/skyblock')
-rw-r--r-- | src/main/kotlin/util/skyblock/ItemType.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/kotlin/util/skyblock/ItemType.kt b/src/main/kotlin/util/skyblock/ItemType.kt index 7149379..6c7096c 100644 --- a/src/main/kotlin/util/skyblock/ItemType.kt +++ b/src/main/kotlin/util/skyblock/ItemType.kt @@ -65,6 +65,8 @@ value class ItemType private constructor(val name: String) { val PET = ofName("PET") } + val dungeonVariant get() = ofName("DUNGEON $name") + override fun toString(): String { return name } |