Merge pull request #52 from 0ft3n/master

Fixed key display for auctions
This commit is contained in:
Will FP
2022-11-23 13:36:23 +00:00
committed by GitHub

View File

@@ -20,6 +20,8 @@ class KeyDisplay(
val fis = FastItemStack.wrap(itemStack)
fis.lore = crate.keyLore.map { Display.PREFIX + it }
fis.lore = crate.keyLore.map { Display.PREFIX + it }.toMutableList().apply { this.addAll(
fis.lore
) }
}
}