New travis build

This commit is contained in:
hydrabolt
2015-10-28 16:09:21 +00:00
parent 1125d4ae97
commit 834825a09d
5 changed files with 173 additions and 154 deletions

View File

@@ -30,7 +30,7 @@ var ServerPermissions = (function () {
manageRoles: this.manageRoles,
manageChannels: this.manageChannels,
readMessages: this.readMessages,
sendMessages: this.sendMessage,
sendMessages: this.sendMessages,
sendTTSMessages: this.sendTTSMessages,
manageMessages: this.manageMessages,
embedLinks: this.embedLinks,
@@ -64,7 +64,7 @@ var ServerPermissions = (function () {
this.packed |= 1 << location;
} else {
// not allowed
this.packed &= 1 << location;
this.packed &= ~(1 << location);
}
};