forked from mirrors/webxoss-core
Fix player.putCardToLifeCloth()
This commit is contained in:
parent
9f7df4f0a9
commit
1ac41ac745
1 changed files with 1 additions and 1 deletions
|
@ -2230,7 +2230,7 @@ Player.prototype.getCard = function (arg) {
|
||||||
return card;
|
return card;
|
||||||
};
|
};
|
||||||
|
|
||||||
Player.prototype.putCardToLifeCloth = function (cid) {
|
Player.prototype.putCardToLifeCloth = function (arg) {
|
||||||
var card = this.matchCard(arg);
|
var card = this.matchCard(arg);
|
||||||
if (!card) return null;
|
if (!card) return null;
|
||||||
card.moveTo(this.lifeClothZone);
|
card.moveTo(this.lifeClothZone);
|
||||||
|
|
Loading…
Reference in a new issue