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(task, 50, 50);
|
||||||
|
|
||||||
timer.schedule(refillTask, 50, 1000);
|
timer.schedule(refillTask, 50, 1000);
|
||||||
|
|
||||||
|
move(client.player.getPos());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void tick () {
|
private void tick () {
|
||||||
|
@ -94,7 +96,7 @@ public class CommandCore {
|
||||||
public void check () {
|
public void check () {
|
||||||
final ClientPlayNetworkHandler networkHandler = client.getNetworkHandler();
|
final ClientPlayNetworkHandler networkHandler = client.getNetworkHandler();
|
||||||
|
|
||||||
if (networkHandler == null || withPos == null) return;
|
if (networkHandler == null || withPos == null || !ready) return;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
for (int x = withPos.start.getX(); x <= withPos.end.getX(); x++) {
|
for (int x = withPos.start.getX(); x <= withPos.end.getX(); x++) {
|
||||||
|
|
Loading…
Reference in a new issue