Fix player.putCardToLifeCloth()

This commit is contained in:
WEBXOSS 2016-12-06 14:40:51 +08:00
parent 9f7df4f0a9
commit 1ac41ac745

View file

@ -2230,7 +2230,7 @@ Player.prototype.getCard = function (arg) {
return card;
};
Player.prototype.putCardToLifeCloth = function (cid) {
Player.prototype.putCardToLifeCloth = function (arg) {
var card = this.matchCard(arg);
if (!card) return null;
card.moveTo(this.lifeClothZone);