mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
🐛 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('-');
|
||||
if (eff.mixin) {
|
||||
var mixin = mixins[eff.mixin];
|
||||
for(var porp in mixin) {
|
||||
for(var prop in mixin) {
|
||||
effect[prop] = mixin[prop];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue