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

Merge branch 'gameScene'

...@@ -269,14 +269,14 @@ class GameRoom ...@@ -269,14 +269,14 @@ class GameRoom
setTimeout(function() setTimeout(function()
{ {
if (this.currentPhase === GameServer.Phase.START) this.checkPhase(Date.now()); if (this.currentPhase === GameServer.Phase.START) this.checkPhase(Date.now());
}.bind(this), 6000); }.bind(this), 60000);
} }
checkPhase(checkTime) checkPhase(checkTime)
{ {
if (this.currentPhase === GameServer.Phase.START) if (this.currentPhase === GameServer.Phase.START)
{ {
if (checkTime - this.startTime > 6000) if (checkTime - this.startTime > 60000)
{ {
this.currentPhase = GameServer.Phase.MAIN; this.currentPhase = GameServer.Phase.MAIN;
this.rateArrangePoint = 150; 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