forked from mirrors/webxoss-core
Fix WX14-032 Effect typo
This commit is contained in:
parent
ff071e1357
commit
5714ecb5da
1 changed files with 2 additions and 2 deletions
|
@ -123155,7 +123155,7 @@ var CardInfo = {
|
||||||
'TRASH_ZONE',
|
'TRASH_ZONE',
|
||||||
];
|
];
|
||||||
return this.player.selectTextAsyn('CHOOSE_ZONE',texts).callback(this,function (text) {
|
return this.player.selectTextAsyn('CHOOSE_ZONE',texts).callback(this,function (text) {
|
||||||
this.filedData['_1982'] = text;
|
this.fieldData['_1982'] = text;
|
||||||
return this.player.opponent.showTextAsyn('CHOOSE_ZONE','text',text);
|
return this.player.opponent.showTextAsyn('CHOOSE_ZONE','text',text);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -123175,7 +123175,7 @@ var CardInfo = {
|
||||||
constEffects: [{
|
constEffects: [{
|
||||||
action: function (set,add) {
|
action: function (set,add) {
|
||||||
var cards = [];
|
var cards = [];
|
||||||
var text = this.filedData['_1982'];
|
var text = this.fieldData['_1982'];
|
||||||
if (text === 'MAIN_DECK') {
|
if (text === 'MAIN_DECK') {
|
||||||
cards = this.player.opponent.mainDeck.cards;
|
cards = this.player.opponent.mainDeck.cards;
|
||||||
} else if (text === 'HAND') {
|
} else if (text === 'HAND') {
|
||||||
|
|
Loading…
Reference in a new issue