From 29478f0af093d726f2596f174d58331dd409208b Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 10 Jul 2024 17:31:48 +0200 Subject: Fix crash when copying entity data Fixes https://github.com/nea89o/Firmament/issues/35 --- src/main/kotlin/moe/nea/firmament/features/debug/PowerUserTools.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/moe/nea/firmament/features/debug/PowerUserTools.kt b/src/main/kotlin/moe/nea/firmament/features/debug/PowerUserTools.kt index 17e8253..ec565aa 100644 --- a/src/main/kotlin/moe/nea/firmament/features/debug/PowerUserTools.kt +++ b/src/main/kotlin/moe/nea/firmament/features/debug/PowerUserTools.kt @@ -96,7 +96,7 @@ object PowerUserTools : FirmamentFeature { } MC.sendChat(Text.stringifiedTranslatable("firmament.poweruser.entity.passengers", target.passengerList.size)) target.passengerList.forEach { - showEntity(target) + showEntity(it) } } -- cgit