forked from mirrors/webxoss-core
🐛 fix typo in card.cookEffect
This commit is contained in:
parent
aa91b0d950
commit
7e95ed5512
1 changed files with 1 additions and 1 deletions
2
Card.js
2
Card.js
|
@ -253,7 +253,7 @@ Card.prototype.cookEffect = function (rawEffect,type,offset) {
|
||||||
effect.description = [this.cid,type,idx+offset].join('-');
|
effect.description = [this.cid,type,idx+offset].join('-');
|
||||||
if (eff.mixin) {
|
if (eff.mixin) {
|
||||||
var mixin = mixins[eff.mixin];
|
var mixin = mixins[eff.mixin];
|
||||||
for(var porp in mixin) {
|
for(var prop in mixin) {
|
||||||
effect[prop] = mixin[prop];
|
effect[prop] = mixin[prop];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue