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

방 대기 시간 버그 수정

parent 2c245f69
......@@ -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