You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val message ="${info.type}${info::class.simpleName} at ${info.context.blockPos.toShortString()} timed out with cached state ${info.context.cachedState}"
62
63
BreakManager.logger.error(message)
63
-
warn(message)
64
+
if (managerDebugLogs) this@BrokenBlockHandler.warn(message)
64
65
} elseif (!DEFAULT.ignoreItemDropWarnings) {
65
66
val message ="${info.type}${info::class.simpleName}'s item drop at ${info.context.blockPos.toShortString()} timed out"
66
-
BreakManager.logger.warn(message)
67
-
warn(message)
67
+
BreakManager.logger.warning(message)
68
+
if (managerDebugLogs) this@BrokenBlockHandler.warn(message)
68
69
}
69
70
70
71
if (!info.broken && info.breakConfig.breakConfirmation !=BreakConfirmationMode.AwaitThenBreak) {
this@InteractedBlockHandler.warn("Placed block at ${event.pos.toShortString()} was rejected with ${event.newState} instead of ${pending.context.expectedState}")
63
+
if (managerDebugLogs) this@InteractedBlockHandler.warn("Placed block at ${event.pos.toShortString()} was rejected with ${event.newState} instead of ${pending.context.expectedState}")
0 commit comments