fix player.selectSigni shortcut

This commit is contained in:
WEBXOSS 2016-10-27 21:47:14 +08:00
parent 50f0b6bf33
commit ea9dddf3a5
2 changed files with 3 additions and 3 deletions

View file

@ -110547,7 +110547,7 @@ var CardInfo = {
"timestamp": 1468056353045, "timestamp": 1468056353045,
"wxid": "WX13-037", "wxid": "WX13-037",
name: "幻蟲 スカラベ", name: "幻蟲 スカラベ",
name_zh_CN: "幻虫 圣甲虫", name_zh_CN: "幻虫 圣甲虫",
name_en: "Scarab, Phantom Insect", name_en: "Scarab, Phantom Insect",
"kana": "ゲンチュウスカラベ", "kana": "ゲンチュウスカラベ",
"rarity": "SR", "rarity": "SR",

View file

@ -1923,11 +1923,11 @@ Player.prototype.selectByFilterAsyn = function (filter,cards) {
}; };
Player.prototype.selectOpponentSigniAsyn = function (filter) { Player.prototype.selectOpponentSigniAsyn = function (filter) {
this.selectByFilterAsyn(filter,this.opponent.signis); return this.selectByFilterAsyn(filter,this.opponent.signis);
}; };
Player.prototype.selectSelfSigniAsyn = function (filter) { Player.prototype.selectSelfSigniAsyn = function (filter) {
this.selectByFilterAsyn(filter,this.signis); return this.selectByFilterAsyn(filter,this.signis);
}; };
Player.prototype.searchAsyn = function (filter,max,min,dontShow) { Player.prototype.searchAsyn = function (filter,max,min,dontShow) {