forked from Hri7566/mpp-server-dev2
Update Message.js
This commit is contained in:
parent
96c15473ba
commit
22110d0541
|
@ -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) => {
|
|||
|
||||
})
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue