🐛 fix colorless

This commit is contained in:
WEBXOSS 2017-08-23 22:17:04 +08:00
parent d37b13ab98
commit 2b7f09c6e2
4 changed files with 4 additions and 4 deletions

View file

@ -431,7 +431,7 @@ Dialog.prototype.selectEner = function (title,cards,integers,cost,callback,onCan
count: requirement.count,
mask: requirement.mask,
filter: function (int) {
return !int || (int & requirement.mask);
return !requirement.mask || (int & requirement.mask);
},
};
});

View file

@ -65,7 +65,7 @@ if (window.applicationCache) {
}
var VERSION = 70;
var VERSION = 71;
var serverVersion;
var clientId = 0;
var game = null;

View file

@ -47,4 +47,4 @@ background/loading.gif
NETWORK:
*
# 2017/08/23 21:43
# 2017/08/23 22:16

File diff suppressed because one or more lines are too long