aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/skyblock
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-12-31 17:51:29 +0100
committerLinnea Gräf <nea@nea.moe>2024-12-31 17:51:29 +0100
commitbb124fe91d310d08fbf17ea8972d9e7b8b89b319 (patch)
treee392cc41284d06cdcd78eb073ee8212d620ee757 /src/main/kotlin/util/skyblock
parenta50de1601873d5c750c88bef9468b24fdd923ef0 (diff)
downloadFirmament-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.kt2
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
}