reduced fireworks in dragons

This commit is contained in:
Chiss 2014-11-23 15:00:05 +11:00
parent 089fdf8a64
commit 0c5ec503be
1 changed files with 2 additions and 2 deletions

View File

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