removed previous commit jesus

This commit is contained in:
Mysticate 2015-08-28 21:56:35 -06:00
parent 6628f5a1ae
commit bb09720450

View File

@ -215,7 +215,7 @@ public class Evolution extends SoloGame
}
//Double Kit
@EventHandler(priority = EventPriority.HIGH)
@EventHandler(priority = EventPriority.MONITOR)
public void storeTokens(GameStateChangeEvent event)
{
if (event.GetState() != GameState.Prepare)
@ -229,22 +229,6 @@ public class Evolution extends SoloGame
}
}
@EventHandler(priority = EventPriority.LOWEST)
public void setKit(GameStateChangeEvent event)
{
if (event.GetState() != GameState.Prepare)
return;
for (Player player : GetPlayers(true))
{
if (GetKit(player) != null)
continue;
this.SetKit(player, GetKits()[0], false);
}
}
@EventHandler(priority = EventPriority.MONITOR)
public void showKit(GameStateChangeEvent event)
{