forked from Hri7566/mpp-server-dev2
remove note quota
This commit is contained in:
parent
491624e492
commit
183f2016c6
|
@ -177,9 +177,9 @@ module.exports = (cl) => {
|
|||
if (!msg.hasOwnProperty('t') || !msg.hasOwnProperty('n')) return;
|
||||
if (typeof msg.t != 'number' || typeof msg.n != 'object') return;
|
||||
|
||||
if (cl.quotas.note && !admin) {
|
||||
if (!cl.quotas.note.attempt()) return;
|
||||
}
|
||||
// if (cl.quotas.note && !admin) {
|
||||
// if (!cl.quotas.note.attempt()) return;
|
||||
// }
|
||||
|
||||
if (cl.channel.settings.crownsolo) {
|
||||
if ((cl.channel.crown.userId == cl.user._id) && !cl.channel.crowndropped) {
|
||||
|
|
Loading…
Reference in New Issue