mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-03-30 23:52:13 +02:00
fix WD18-009 burst
This commit is contained in:
parent
c05ae82fe2
commit
4eaef4685b
1 changed files with 2 additions and 1 deletions
|
@ -126162,7 +126162,8 @@ var CardInfo = {
|
||||||
var filter = function (card) {
|
var filter = function (card) {
|
||||||
return card.acce;
|
return card.acce;
|
||||||
};
|
};
|
||||||
this.player.searchAsyn(filter,1).callback(this,function (card) {
|
this.player.searchAsyn(filter,1).callback(this,function (cards) {
|
||||||
|
var card = cards[0];
|
||||||
if (!card) return;
|
if (!card) return;
|
||||||
card.moveTo(this.player.enerZone);
|
card.moveTo(this.player.enerZone);
|
||||||
this.game.moveCards(card,this.player.enerZone);
|
this.game.moveCards(card,this.player.enerZone);
|
||||||
|
|
Loading…
Reference in a new issue