Merge branch 'pregametutorial' of http://184.154.0.242:7990/scm/min/mineplex into type-wars

This commit is contained in:
Sarah 2015-11-26 16:12:51 +01:00
commit 40259a26f1
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()