🐛 fix typo in card.cookEffect

This commit is contained in:
WEBXOSS 2017-08-06 20:11:57 +08:00
parent aa91b0d950
commit 7e95ed5512

View file

@ -253,7 +253,7 @@ Card.prototype.cookEffect = function (rawEffect,type,offset) {
effect.description = [this.cid,type,idx+offset].join('-');
if (eff.mixin) {
var mixin = mixins[eff.mixin];
for(var porp in mixin) {
for(var prop in mixin) {
effect[prop] = mixin[prop];
}
}