From ea9dddf3a5e1e5f5fc9d3197d55aa28252460dc5 Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Thu, 27 Oct 2016 21:47:14 +0800 Subject: [PATCH] fix player.selectSigni shortcut --- CardInfo.js | 2 +- Player.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CardInfo.js b/CardInfo.js index 2129ce7..0879d1a 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -110547,7 +110547,7 @@ var CardInfo = { "timestamp": 1468056353045, "wxid": "WX13-037", name: "幻蟲 スカラベ", - name_zh_CN: "幻虫 圣甲虫", + name_zh_CN: "幻虫 圣甲虫", name_en: "Scarab, Phantom Insect", "kana": "ゲンチュウスカラベ", "rarity": "SR", diff --git a/Player.js b/Player.js index de05b1d..6a36afa 100644 --- a/Player.js +++ b/Player.js @@ -1923,11 +1923,11 @@ Player.prototype.selectByFilterAsyn = function (filter,cards) { }; Player.prototype.selectOpponentSigniAsyn = function (filter) { - this.selectByFilterAsyn(filter,this.opponent.signis); + return this.selectByFilterAsyn(filter,this.opponent.signis); }; Player.prototype.selectSelfSigniAsyn = function (filter) { - this.selectByFilterAsyn(filter,this.signis); + return this.selectByFilterAsyn(filter,this.signis); }; Player.prototype.searchAsyn = function (filter,max,min,dontShow) {