mpp-server-dev2/Quotas.js

34 lines
536 B
JavaScript
Raw Normal View History

2020-04-07 09:55:16 +02:00
module.exports = Object.seal({
chat: {
lobby: {
amount: 4,
time: 4000
2020-04-07 09:55:16 +02:00
},
normal: {
amount: 4,
time: 4000
2020-04-07 09:55:16 +02:00
},
insane: {
amount: 10,
time: 4000
2020-04-07 09:55:16 +02:00
}
},
chown: {
amount: 10,
time: 5000
2020-04-07 09:55:16 +02:00
},
2020-04-07 23:02:35 +02:00
userset: {
amount: 30,
time: 30 * 60000
2020-04-07 09:55:16 +02:00
},
room: {
time: 500
2020-04-07 09:55:16 +02:00
},
cursor: {
time: 16
2020-04-07 09:55:16 +02:00
},
kickban: {
amount: 2,
time: 1000
2020-04-07 09:55:16 +02:00
}
})