temp patch
This commit is contained in:
parent
d9fc63a75e
commit
5d792b30a5
1 changed files with 7 additions and 5 deletions
|
@ -251,7 +251,7 @@ public class CorePlugin extends PositionPlugin.Listener {
|
||||||
shouldRefill = true; // worst fix
|
shouldRefill = true; // worst fix
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isCommandBlockUpdate(int blockState) {
|
private boolean isCommandBlockUpdate (int blockState) {
|
||||||
return
|
return
|
||||||
// command block
|
// command block
|
||||||
(
|
(
|
||||||
|
@ -261,14 +261,16 @@ public class CorePlugin extends PositionPlugin.Listener {
|
||||||
|
|
||||||
// chain command block
|
// chain command block
|
||||||
(
|
(
|
||||||
blockState >= 12371 &&
|
blockState == 12533
|
||||||
blockState <= 12382
|
// blockState >= 12371 &&
|
||||||
|
// blockState <= 12382
|
||||||
) ||
|
) ||
|
||||||
|
|
||||||
// repeating command block
|
// repeating command block
|
||||||
(
|
(
|
||||||
blockState >= 12359 &&
|
blockState == 12521
|
||||||
blockState <= 12370
|
// blockState >= 12359 &&
|
||||||
|
// blockState <= 12370
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue