1
0
Fork 0

Fix game init message

This commit is contained in:
WEBXOSS 2016-11-12 17:08:56 +08:00
parent 890a54d1ad
commit 7dd84bc3da

View file

@ -218,7 +218,7 @@ Game.prototype.outputInitMsg = function (player) {
lrigDeckCardInfos: player.lrigDeck.cards.map(function (card) {
return {
pid: card.pid,
isSide: card.sideA
isSide: !!card.sideA
}
},this)
},
@ -236,10 +236,10 @@ Game.prototype.outputInitMsg = function (player) {
excludedZone: opponent.excludedZone,
mainDeckCards: opponent.mainDeck.cards,
lrigDeckCards: opponent.lrigDeck.cards,
lrigDeckCardInfos: player.lrigDeck.cards.map(function (card) {
lrigDeckCardInfos: opponent.lrigDeck.cards.map(function (card) {
return {
pid: 0,
isSide: card.sideA
isSide: !!card.sideA
}
},this)
}