0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 17:20:12 +02:00

Fix filterFlying doing the opposite of what it should do

Closes #326
This commit is contained in:
Alexander01998 2021-03-06 14:45:28 +01:00
parent a9a7421066
commit 2109f98110
11 changed files with 11 additions and 11 deletions

View File

@ -261,7 +261,7 @@ public final class BowAimbotHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return MC.world.isSpaceEmpty(box);
return !MC.world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -211,7 +211,7 @@ public final class ClickAuraHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return world.isSpaceEmpty(box);
return !world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -206,7 +206,7 @@ public final class FightBotHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return MC.world.isSpaceEmpty(box);
return !MC.world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -179,7 +179,7 @@ public final class FollowHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return MC.world.isSpaceEmpty(box);
return !MC.world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -216,7 +216,7 @@ public final class KillauraHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return world.isSpaceEmpty(box);
return !world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -195,7 +195,7 @@ public final class KillauraLegitHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return world.isSpaceEmpty(box);
return !world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -199,7 +199,7 @@ public final class MultiAuraHack extends Hack implements UpdateListener
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return world.isSpaceEmpty(box);
return !world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -245,7 +245,7 @@ public final class ProtectHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return MC.world.isSpaceEmpty(box);
return !MC.world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -146,7 +146,7 @@ public final class RemoteViewHack extends Hack
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return MC.world.isSpaceEmpty(box);
return !MC.world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -186,7 +186,7 @@ public final class TpAuraHack extends Hack implements UpdateListener
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return MC.world.isSpaceEmpty(box);
return !MC.world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())

View File

@ -186,7 +186,7 @@ public final class TriggerBotHack extends Hack implements UpdateListener
Box box = e.getBoundingBox();
box = box.union(box.offset(0, -filterFlying.getValue(), 0));
return world.isSpaceEmpty(box);
return !world.isSpaceEmpty(box);
});
if(filterMonsters.isChecked())