fix lol
This commit is contained in:
parent
ca271067f9
commit
9ab596aa8f
1 changed files with 7 additions and 4 deletions
|
@ -299,16 +299,19 @@ public class CorePlugin extends PositionPlugin.Listener {
|
||||||
public void positionChange (Vector3i position) {
|
public void positionChange (Vector3i position) {
|
||||||
from = Vector3i.from(
|
from = Vector3i.from(
|
||||||
fromSize.getX() + bot.position.position.getX(),
|
fromSize.getX() + bot.position.position.getX(),
|
||||||
fromSize.getY(),
|
MathUtilities.clamp(fromSize.getY(), bot.world.minY, bot.world.maxY),
|
||||||
fromSize.getZ() + bot.position.position.getZ()
|
fromSize.getZ() + bot.position.position.getZ()
|
||||||
);
|
);
|
||||||
|
|
||||||
to = Vector3i.from(
|
to = Vector3i.from(
|
||||||
toSize.getX() + bot.position.position.getX(),
|
toSize.getX() + bot.position.position.getX(),
|
||||||
toSize.getY(),
|
MathUtilities.clamp(toSize.getY(), bot.world.minY, bot.world.maxY),
|
||||||
toSize.getZ() + bot.position.position.getZ()
|
toSize.getZ() + bot.position.position.getZ()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
System.out.println(from);
|
||||||
|
System.out.println(to);
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
refill();
|
refill();
|
||||||
|
|
||||||
|
@ -331,11 +334,11 @@ public class CorePlugin extends PositionPlugin.Listener {
|
||||||
"minecraft:fill %s %s %s %s %s %s minecraft:command_block{CustomName:'%s'}",
|
"minecraft:fill %s %s %s %s %s %s minecraft:command_block{CustomName:'%s'}",
|
||||||
|
|
||||||
from.getX(),
|
from.getX(),
|
||||||
MathUtilities.clamp(from.getY(), bot.world.minY, bot.world.maxY),
|
from.getY(),
|
||||||
from.getZ(),
|
from.getZ(),
|
||||||
|
|
||||||
to.getX(),
|
to.getX(),
|
||||||
MathUtilities.clamp(to.getY(), bot.world.minY, bot.world.maxY),
|
to.getY(),
|
||||||
to.getZ(),
|
to.getZ(),
|
||||||
|
|
||||||
bot.config.core.customName
|
bot.config.core.customName
|
||||||
|
|
Loading…
Reference in a new issue