From cfc0aa7d058bc97d5a4c1319d06828a231d6de05 Mon Sep 17 00:00:00 2001 From: Cheese Date: Sat, 21 Nov 2015 08:20:02 +1100 Subject: [PATCH] reverted to size 2 ball --- .../nautilus/game/arcade/game/games/monsterleague/Ball.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)) {