Mineplex2018-withcommit/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/stats/SparklezStatTracker.java

25 lines
600 B
Java
Raw Normal View History

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;
addStat(event.getPlayer(), "Sparklez", 1, false, false);
2014-08-22 00:55:40 +02:00
}
}