Update Message.js

This commit is contained in:
wolfy01 2020-04-07 02:04:11 -04:00 committed by GitHub
parent b62bb01c2b
commit 8859255532
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -30,6 +30,7 @@ module.exports = (cl) => {
}
})
cl.on("m", msg => {
if (!cl.cursQuota.attempt()) return;
if (!(cl.channel && cl.participantId)) return;
if (!msg.hasOwnProperty("x")) msg.x = null;
if (!msg.hasOwnProperty("y")) msg.y = null;
@ -60,6 +61,15 @@ module.exports = (cl) => {
cl.channel.updateCh();
})
cl.on("a", msg => {
if (cl.channel.isLobby(cl.channel._id)) {
if (!cl.chatQuota.attempt()) return;
} else {
if (!(cl.user._id == cl.channel.crown.userId)) {
if (!cl.chatQuota.attempt()) return;
} else {
if (!cl.crowned_chatQuota.attempt()) return;
}
}
if (!(cl.channel && cl.participantId)) return;
if (!msg.hasOwnProperty('message')) return;
if (cl.channel.settings.chat) {
@ -100,6 +110,7 @@ module.exports = (cl) => {
cl.server.roomlisteners.delete(cl.connectionid);
})
cl.on("userset", msg => {
if (!cl.usersetQuota.attempt()) return;
if (!(cl.channel && cl.participantId)) return;
if (!msg.hasOwnProperty("set") || !msg.set) msg.set = {};
if (msg.set.hasOwnProperty('name') && typeof msg.set.name == "string") {
@ -165,4 +176,4 @@ module.exports = (cl) => {
})
}
}