We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c021c6 commit a6737f5Copy full SHA for a6737f5
1 file changed
common/src/main/kotlin/com/lambda/interaction/request/breaking/BrokenBlockHandler.kt
@@ -57,7 +57,8 @@ object BrokenBlockHandler {
57
val loaded = world.isChunkLoaded(ChunkSectionPos.getSectionCoord(pos.x), ChunkSectionPos.getSectionCoord(pos.z))
58
if (!loaded) return@let
59
60
- info("${info::class.simpleName} at ${info.context.expectedPos.toShortString()} timed out")
+ if (!info.broken) info("${info::class.simpleName} at ${info.context.expectedPos.toShortString()} timed out")
61
+ else info("${info::class.simpleName}'s item drop at ${info.context.expectedPos.toShortString()} timed out")
62
63
val awaitThenBreak = info.breakConfig.breakConfirmation != BreakConfirmationMode.AwaitThenBreak
64
if (!info.broken && awaitThenBreak) {
0 commit comments