mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
fix X15-039 const
This commit is contained in:
parent
55099013a3
commit
d5c4ee0009
1 changed files with 1 additions and 1 deletions
|
@ -106346,7 +106346,7 @@ var CardInfo = {
|
|||
auto: 'onAttack',
|
||||
actionAsyn: function () {
|
||||
return this.decreasePowerAsyn(4000).callback(this,function (card) {
|
||||
if (card.power > 0) return;
|
||||
if (!card || card.power > 0) return;
|
||||
return this.player.selectOptionalAsyn('BANISH',[this]).callback(this,function (card) {
|
||||
if (!card) return;
|
||||
return this.banishAsyn().callback(this,function (succ) {
|
||||
|
|
Loading…
Reference in a new issue