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); } }