temp patch

This commit is contained in:
Chayapak 2023-10-01 11:45:23 +07:00
parent d9fc63a75e
commit 5d792b30a5

View file

@ -251,7 +251,7 @@ public class CorePlugin extends PositionPlugin.Listener {
shouldRefill = true; // worst fix
}
private boolean isCommandBlockUpdate(int blockState) {
private boolean isCommandBlockUpdate (int blockState) {
return
// command block
(
@ -261,14 +261,16 @@ public class CorePlugin extends PositionPlugin.Listener {
// chain command block
(
blockState >= 12371 &&
blockState <= 12382
blockState == 12533
// blockState >= 12371 &&
// blockState <= 12382
) ||
// repeating command block
(
blockState >= 12359 &&
blockState <= 12370
blockState == 12521
// blockState >= 12359 &&
// blockState <= 12370
);
}