From 0c5ec503be00fc2a45e284a547f3d082b4a96c90 Mon Sep 17 00:00:00 2001 From: Chiss Date: Sun, 23 Nov 2014 15:00:05 +1100 Subject: [PATCH] reduced fireworks in dragons --- .../src/nautilus/game/arcade/kit/perks/PerkSparkler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkSparkler.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkSparkler.java index 6f32b72d4..90c19a6c9 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkSparkler.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkSparkler.java @@ -181,7 +181,7 @@ public class PerkSparkler extends Perk @EventHandler public void Sparkle(UpdateEvent event) { - if (event.getType() != UpdateType.FASTER) + if (event.getType() != UpdateType.FAST) return; Iterator itemIterator = _items.iterator(); @@ -197,7 +197,7 @@ public class PerkSparkler extends Perk continue; } - UtilFirework.playFirework(item.getLocation(), Type.BURST, Color.GREEN, false, false); + UtilFirework.playFirework(item.getLocation(), Type.BURST, Color.YELLOW, false, false); } }