mpp-server-dev2/Quotas.js

35 lines
557 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: {
2021-05-28 23:15:00 +02:00
time: 16,
amount: 10
2020-04-07 09:55:16 +02:00
},
kickban: {
amount: 2,
time: 1000
2020-04-07 09:55:16 +02:00
}
2021-05-09 10:52:41 +02:00
});