From 7c7b166b4d626b0a5da823859fbb48fe8b996faa Mon Sep 17 00:00:00 2001 From: Mini-Chiss Date: Sat, 25 Jul 2015 16:05:12 +0200 Subject: [PATCH] reduced particles a little --- .../nautilus/game/arcade/game/games/lobbers/BombLobbers.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/lobbers/BombLobbers.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/lobbers/BombLobbers.java index 51190eed7..4fbb726a5 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/lobbers/BombLobbers.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/lobbers/BombLobbers.java @@ -443,13 +443,13 @@ public class BombLobbers extends TeamGame implements IThrown if (team.GetColor() == ChatColor.AQUA) { - for (int i = 0 ; i < 5 ; i++) + for (int i = 0 ; i < 2 ; i++) UtilParticle.PlayParticle(ParticleType.RED_DUST, newTarget.clone().add(0.0, 0.5, 0.0), -1, 1, 1, 1, 0, ViewDist.NORMAL, UtilServer.getPlayers()); } else { - for (int i = 0 ; i < 5 ; i++) + for (int i = 0 ; i < 2 ; i++) UtilParticle.PlayParticle(ParticleType.RED_DUST, newTarget.clone().add(0.0, 0.5, 0.0), 0, 0, 0, 0, 1, ViewDist.NORMAL, UtilServer.getPlayers()); }