forked from mirrors/webxoss-core
🐛 fix colorless
This commit is contained in:
parent
f2125cdd14
commit
72dd8af239
3 changed files with 3 additions and 3 deletions
|
@ -1554,7 +1554,7 @@ Player.prototype.encodeCost = function (cost, withoutFilter) {
|
|||
if (!withoutFilter) {
|
||||
requirements.forEach(function (item) {
|
||||
item.filter = function (int) {
|
||||
return !int || (int & item.mask)
|
||||
return !item.mask || (int & item.mask)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
function RoomManager (cfg) {
|
||||
this.VERSION = 70;
|
||||
this.VERSION = 71;
|
||||
|
||||
this.MAX_ROOMS = cfg.MAX_ROOMS;
|
||||
this.MAX_CLIENTS = cfg.MAX_CLIENTS;
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d37b13ab9857a79ca0da757859ce727acaf8041f
|
||||
Subproject commit 2b7f09c6e2084979736a72e2ef1325078a84f496
|
Loading…
Reference in a new issue