2014-08-22 00:55:40 +02:00
|
|
|
package nautilus.game.arcade.stats;
|
|
|
|
|
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.EventPriority;
|
|
|
|
|
|
|
|
import nautilus.game.arcade.game.Game;
|
|
|
|
import nautilus.game.arcade.kit.perks.PerkSparkler;
|
|
|
|
|
|
|
|
public class SparklezStatTracker extends StatTracker<Game>
|
|
|
|
{
|
|
|
|
public SparklezStatTracker(Game game)
|
|
|
|
{
|
|
|
|
super(game);
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR)
|
|
|
|
public void onThrowSparkler(PerkSparkler.ThrowSparklerEvent event)
|
|
|
|
{
|
2014-08-25 22:27:02 +02:00
|
|
|
if (getGame().GetState() != Game.GameState.Live)
|
|
|
|
return;
|
|
|
|
|
2014-08-26 22:30:55 +02:00
|
|
|
addStat(event.getPlayer(), "Sparklez", 1, false, false);
|
2014-08-22 00:55:40 +02:00
|
|
|
}
|
|
|
|
}
|