mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-02-07 14:23:39 +01:00
🐛 fix WX16-017 arts
This commit is contained in:
parent
1c84bcdd79
commit
338d96f934
1 changed files with 1 additions and 1 deletions
|
@ -117564,7 +117564,7 @@ var CardInfo = {
|
||||||
return this.player.selectSomeAsyn('ADD_TO_HAND',cards).callback(this,function (cards) {
|
return this.player.selectSomeAsyn('ADD_TO_HAND',cards).callback(this,function (cards) {
|
||||||
var count = cards.filter(function (card) {
|
var count = cards.filter(function (card) {
|
||||||
return inArr(card,this.player.getTraps());
|
return inArr(card,this.player.getTraps());
|
||||||
}).length;
|
},this).length;
|
||||||
this.game.moveCards(cards,this.player.handZone);
|
this.game.moveCards(cards,this.player.handZone);
|
||||||
var done = false;
|
var done = false;
|
||||||
return Callback.loop(this,count,function () {
|
return Callback.loop(this,count,function () {
|
||||||
|
|
Loading…
Reference in a new issue