Commit b4014663 authored by 18손재민's avatar 18손재민

Merge branch 'gameScene'

parents 0b372581 d0c7f4bf
......@@ -269,14 +269,14 @@ class GameRoom
setTimeout(function()
{
if (this.currentPhase === GameServer.Phase.START) this.checkPhase(Date.now());
}.bind(this), 6000);
}.bind(this), 60000);
}
checkPhase(checkTime)
{
if (this.currentPhase === GameServer.Phase.START)
{
if (checkTime - this.startTime > 6000)
if (checkTime - this.startTime > 60000)
{
this.currentPhase = GameServer.Phase.MAIN;
this.rateArrangePoint = 150;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment