blob: 20927e7e8a6e0a5a764c28dd38214c8256332e8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
Description: Writes the current config to disk
*/
exports.run = async (core, server, socket, data) => {
// increase rate limit chance and ignore if not admin
if (socket.uType != 'admin') {
server._police.frisk(socket.remoteAddress, 20);
return;
}
// attempt save, notify of failure
if (!core.managers.config.save()) {
server.reply({
cmd: 'warn',
text: 'Failed to save config, check logs.'
}, client);
return;
}
// return success message
server.reply({
cmd: 'info',
text: 'Config saved!'
}, socket);
// notify mods #transparency
server.broadcast({
cmd: 'info',
text: 'Config saved!'
}, { uType: 'mod' });
};
exports.info = {
name: 'saveconfig',
description: 'Writes the current config to disk'
};
|