better date

This commit is contained in:
Chiss 2014-05-14 12:57:43 +10:00
parent 8ea344cacd
commit 002260dce8
1 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ public class GameCreationManager implements Listener
HandlerList.unregisterAll(game);
System.out.println("GameCreationManager - DEBUG - Attempting Removal - " + game.GetName() + " - " + System.currentTimeMillis());
System.out.println("GameCreationManager - DEBUG - Attempting Removal - " + game.GetName() + " - " + UtilTime.now());
//Cleaned
if (game.WorldData == null)
@ -115,7 +115,7 @@ public class GameCreationManager implements Listener
for (Player player : game.WorldData.World.getPlayers())
player.kickPlayer("Dead World");
System.out.println("GameCreationManager - DEBUG - Kick Players - " + System.currentTimeMillis());
System.out.println("GameCreationManager - DEBUG - Kick Players - " + UtilTime.now());
}
//Clean
@ -125,7 +125,7 @@ public class GameCreationManager implements Listener
game.WorldData = null;
gameIterator.remove();
System.out.println("GameCreationManager - DEBUG - Uninit World - " + System.currentTimeMillis());
System.out.println("GameCreationManager - DEBUG - Uninit World - " + UtilTime.now());
}
}
}