forked from RepoMirrors/kami-blue
cleanup
This commit is contained in:
parent
466e75b314
commit
b474cd8629
|
@ -143,10 +143,6 @@ public class AutoFeetPlace extends Module {
|
|||
}
|
||||
}
|
||||
|
||||
int blocksPlaced = 0;
|
||||
|
||||
while (blocksPlaced < blocksPerTick.getValue()) {
|
||||
|
||||
Vec3d[] offsetPattern = new Vec3d[0];
|
||||
int maxSteps = 0;
|
||||
|
||||
|
@ -160,6 +156,10 @@ public class AutoFeetPlace extends Module {
|
|||
maxSteps = Offsets.SURROUND.length;
|
||||
}
|
||||
|
||||
int blocksPlaced = 0;
|
||||
|
||||
while (blocksPlaced < blocksPerTick.getValue()) {
|
||||
|
||||
if (offsetStep >= maxSteps) {
|
||||
offsetStep = 0;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue