新手关等待时间*1000
This commit is contained in:
parent
787d6af948
commit
314bce2145
@ -196,7 +196,8 @@ export class GeneralRoom extends Room {
|
|||||||
let timeOverFun = function () {
|
let timeOverFun = function () {
|
||||||
handler && handler();
|
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));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -18,6 +18,7 @@ export class BeginGameCommand extends Command<CardGameState, {}> {
|
|||||||
// let card1 = gameUtil.initCardQue(card0.length + 1);
|
// let card1 = gameUtil.initCardQue(card0.length + 1);
|
||||||
// let cardAll = card0.concat(card1);
|
// let cardAll = card0.concat(card1);
|
||||||
// cardAll.randomSort();
|
// cardAll.randomSort();
|
||||||
|
//FixMe:: 移除
|
||||||
let card0 = gameUtil.initSampleCards(1)
|
let card0 = gameUtil.initSampleCards(1)
|
||||||
// let card1 = gameUtil.initSampleCards(card0.length + 1)
|
// let card1 = gameUtil.initSampleCards(card0.length + 1)
|
||||||
// let cardAll = card0.concat(card1)
|
// let cardAll = card0.concat(card1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user