mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
🐛 hotfix WX15-002 not showing answer
This commit is contained in:
parent
04566e53c5
commit
d201d52671
1 changed files with 2 additions and 2 deletions
|
@ -109207,9 +109207,9 @@ var CardInfo = {
|
||||||
var answer = '';
|
var answer = '';
|
||||||
return this.player.opponent.selectTextAsyn('GUESS_TRAP',texts).callback(this,function (text) {
|
return this.player.opponent.selectTextAsyn('GUESS_TRAP',texts).callback(this,function (text) {
|
||||||
answer = text;
|
answer = text;
|
||||||
|
return this.player.showTextAsyn('GUESS_TRAP','text',text).callback(this,function () {
|
||||||
// <ブレイクスルー・ブルー>
|
// <ブレイクスルー・ブルー>
|
||||||
if (!this.game.getData(this.player,'_2285')) return;
|
if (!this.game.getData(this.player,'_2285')) return;
|
||||||
return this.player.showTextAsyn('GUESS_TRAP','text',text).callback(this,function () {
|
|
||||||
var cards = this.player.mainDeck.getTopCards(3);
|
var cards = this.player.mainDeck.getTopCards(3);
|
||||||
var len = cards.length;
|
var len = cards.length;
|
||||||
this.player.informCards(cards);
|
this.player.informCards(cards);
|
||||||
|
|
Loading…
Reference in a new issue