Fixed bug

This commit is contained in:
Auxilor
2023-09-01 13:39:14 +01:00
parent 2a89acd36a
commit 01eb96ef17
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ class EcoItem(
val displayName: String = config.getString("item.display-name")
val slot = SlotTypes[config.getString("slot")] ?: SlotTypes.mainHandSlot
val slot = SlotTypes[config.getString("slot")] ?: SlotTypeMainhand
// Defensive copy
private val _itemStack: ItemStack = run {