1
0
Fork 1
mirror of https://github.com/webxoss/webxoss-core.git synced 2025-04-02 08:59:13 +02:00

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

@ -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) {