2014-08-21 01:20:11 +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.game.games.sheep.SheepGame;
|
|
|
|
|
|
|
|
public class SheepDropStatTracker extends StatTracker<Game>
|
|
|
|
{
|
|
|
|
public SheepDropStatTracker(Game game)
|
|
|
|
{
|
|
|
|
super(game);
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR)
|
|
|
|
public void onSheepStolen(SheepGame.DropEnemySheepEvent 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(), "AnimalRescue", 1, false, false);
|
2014-08-21 01:20:11 +02:00
|
|
|
}
|
|
|
|
}
|