Make use of DISABLE_TUTORIAL configuration at EnterWorld.
This commit is contained in:
@ -282,7 +282,10 @@ public class EnterWorld implements IClientIncomingPacket
|
||||
}
|
||||
}
|
||||
|
||||
loadTutorial(player);
|
||||
if (!Config.DISABLE_TUTORIAL)
|
||||
{
|
||||
loadTutorial(player);
|
||||
}
|
||||
|
||||
// Check for crowns
|
||||
CrownManager.getInstance().checkCrowns(player);
|
||||
|
@ -305,7 +305,10 @@ public class EnterWorld implements IClientIncomingPacket
|
||||
}
|
||||
}
|
||||
|
||||
loadTutorial(player);
|
||||
if (!Config.DISABLE_TUTORIAL)
|
||||
{
|
||||
loadTutorial(player);
|
||||
}
|
||||
|
||||
// Check for crowns
|
||||
CrownManager.getInstance().checkCrowns(player);
|
||||
|
Reference in New Issue
Block a user