This commit is contained in:
Mysticate 2015-07-25 02:01:55 -04:00
parent 365968f41d
commit 5d87d9e1e4

View File

@ -171,6 +171,15 @@ public class BombLobbers extends TeamGame implements IThrown
}
}
@EventHandler
public void disableFlying(GameStateChangeEvent event)
{
for (Player player : GetPlayers(true))
{
player.setAllowFlight(false);
}
}
@EventHandler
public void throwTNT(PlayerInteractEvent event)
{