We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aa848e commit d8d3679Copy full SHA for d8d3679
common/src/main/kotlin/com/lambda/module/modules/player/PacketMine.kt
@@ -1059,8 +1059,12 @@ object PacketMine : Module(
1059
}
1060
1061
private fun SafeContext.packetStartBreak(pos: BlockPos) {
1062
+ if (packets == PacketMode.Grim) {
1063
+ abortBreak(pos)
1064
+ stopBreak(pos)
1065
+ }
1066
startBreak(pos)
- if (packets != PacketMode.Vanilla || doubleBreak) abortBreak(pos)
1067
+ if (packets == PacketMode.NCP) abortBreak(pos)
1068
if (packets == PacketMode.Grim || doubleBreak) stopBreak(pos)
1069
1070
0 commit comments