diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/monsterleague/Ball.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/monsterleague/Ball.java index f888f9e0b..b546951c8 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/monsterleague/Ball.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/monsterleague/Ball.java @@ -159,7 +159,7 @@ public class Ball //Spawn _host.CreatureAllowOverride = true; _ball = _ballSpawn.getWorld().spawn(_ballSpawn, Slime.class); - _ball.setSize(3); + _ball.setSize(2); UtilEnt.Vegetate(_ball); UtilEnt.ghost(_ball, false, false); @@ -190,8 +190,8 @@ public class Ball for (Player player : _host.GetPlayers(true)) { - if (UtilMath.offset(player, _ball) < 2 || - UtilMath.offset(player.getEyeLocation(), _ball.getLocation()) < 1.5) + if (UtilMath.offset(player, _ball) < 1.5 || + UtilMath.offset(player.getEyeLocation(), _ball.getLocation()) < 1.25) { if (Recharge.Instance.use(player, "Football Kick", 600, false, false)) {