We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 604c33d commit abb2359Copy full SHA for abb2359
src/main/kotlin/dev/sterner/common/components/VoidBoundRevelationComponent.kt
@@ -155,7 +155,6 @@ class VoidBoundRevelationComponent(private val player: Player) : AutoSyncedCompo
155
for (i in 0 until unlockedList.size) {
156
val item = unlockedList.getCompound(i)
157
val itemAbility = ItemAbility.readNbt(item)
158
- println("TT: $itemAbility")
159
unlockedItemAbilities.add(itemAbility)
160
}
161
@@ -185,7 +184,6 @@ class VoidBoundRevelationComponent(private val player: Player) : AutoSyncedCompo
185
184
186
val unlockedList = ListTag()
187
unlockedItemAbilities.forEach { unlockedTag ->
188
- println(unlockedTag)
189
val abilityTag = unlockedTag.writeNbt()
190
unlockedList.add(abilityTag)
191
0 commit comments