aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/potatocrime/item
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/potatocrime/item')
-rw-r--r--src/main/kotlin/moe/nea/potatocrime/item/ContrabandItem.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/moe/nea/potatocrime/item/ContrabandItem.kt b/src/main/kotlin/moe/nea/potatocrime/item/ContrabandItem.kt
index 728d84a..06fe573 100644
--- a/src/main/kotlin/moe/nea/potatocrime/item/ContrabandItem.kt
+++ b/src/main/kotlin/moe/nea/potatocrime/item/ContrabandItem.kt
@@ -41,8 +41,8 @@ class ContrabandItem : Item(
context: TooltipContext
) {
val count = stack.getContrabandCount()
- tooltip.add(
- PotatoTranslations.contrabandFillText.format(count.toString()).styled { it.withColor(Formatting.DARK_GRAY) })
+ tooltip.add(PotatoTranslations.contrabandFillText.format(count.toString())
+ .styled { it.withColor(Formatting.DARK_GRAY) })
}
override fun use(world: World, user: PlayerEntity, hand: Hand): TypedActionResult<ItemStack> {