mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-01-31 09:49:16 +01:00
fix player.selectSigni shortcut
This commit is contained in:
parent
50f0b6bf33
commit
ea9dddf3a5
2 changed files with 3 additions and 3 deletions
|
@ -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",
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue