Adding 2 Seconds delay.

This commit is contained in:
Sarah 2015-11-26 16:12:13 +01:00
parent eddbde5ebd
commit a653f053a5
1 changed files with 8 additions and 1 deletions

View File

@ -49,7 +49,14 @@ public abstract class GameTutorial
Manager.getPluginManager().callEvent(new GameTutorialStartEvent(this));
onStart();
preparePlayers();
nextPhase();
Manager.runSyncLater(new Runnable()
{
@Override
public void run()
{
nextPhase();
}
}, 40);
}
protected void nextPhase()