新手关等待时间*1000

This commit is contained in:
zhl 2021-02-02 11:04:40 +08:00
parent 787d6af948
commit 314bce2145
2 changed files with 3 additions and 1 deletions

View File

@ -196,7 +196,8 @@ export class GeneralRoom extends Room {
let timeOverFun = function () {
handler && handler();
}
this.gameClock.set(name, this.clock.setTimeout(timeOverFun, millisecond , name));
//FixMe:: 移除*1000
this.gameClock.set(name, this.clock.setTimeout(timeOverFun, millisecond * 1000 , name));
}
/**

View File

@ -18,6 +18,7 @@ export class BeginGameCommand extends Command<CardGameState, {}> {
// let card1 = gameUtil.initCardQue(card0.length + 1);
// let cardAll = card0.concat(card1);
// cardAll.randomSort();
//FixMe:: 移除
let card0 = gameUtil.initSampleCards(1)
// let card1 = gameUtil.initSampleCards(card0.length + 1)
// let cardAll = card0.concat(card1)