From 027d9747bde088bf1d8b8e8eb72112b4c87fa2ba Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 13 Jan 2024 11:47:18 +0700 Subject: [PATCH] Clarify which player got resusbcribed --- .../ru/dbotthepony/mc/otm/block/entity/MatteryBlockEntity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryBlockEntity.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryBlockEntity.kt index 777cff983..7ba17a8fc 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryBlockEntity.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryBlockEntity.kt @@ -662,7 +662,7 @@ abstract class MatteryBlockEntity(p_155228_: BlockEntityType<*>, p_155229_: Bloc veto.add(player) recheckPlayer(player) } else if (player !in veto) { - LOGGER.warn("Player got subscribed to ${ChunkPos(chunkPos)} multiple times without unsubscribing, forcefully resubscribing") + LOGGER.warn("$player got subscribed to ${ChunkPos(chunkPos)} multiple times without unsubscribing, forcefully resubscribing") unsubscribe(player) subscribe(player) }