core fax?
This commit is contained in:
parent
63967e407d
commit
16472506c2
1 changed files with 3 additions and 1 deletions
|
@ -71,6 +71,8 @@ public class CommandCore {
|
|||
timer.schedule(task, 50, 50);
|
||||
|
||||
timer.schedule(refillTask, 50, 1000);
|
||||
|
||||
move(client.player.getPos());
|
||||
}
|
||||
|
||||
private void tick () {
|
||||
|
@ -94,7 +96,7 @@ public class CommandCore {
|
|||
public void check () {
|
||||
final ClientPlayNetworkHandler networkHandler = client.getNetworkHandler();
|
||||
|
||||
if (networkHandler == null || withPos == null) return;
|
||||
if (networkHandler == null || withPos == null || !ready) return;
|
||||
|
||||
try {
|
||||
for (int x = withPos.start.getX(); x <= withPos.end.getX(); x++) {
|
||||
|
|
Loading…
Reference in a new issue