2018-03-10 15:47:00 +08:00
|
|
|
/*
|
2018-03-14 13:26:53 +08:00
|
|
|
Description: Adds the target trip to the mod list then elevates the uType
|
2018-03-10 15:47:00 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
exports.run = async (core, server, socket, data) => {
|
|
|
|
if (socket.uType != 'admin') {
|
|
|
|
// ignore if not admin
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mod = {
|
|
|
|
trip: data.trip
|
|
|
|
}
|
|
|
|
|
|
|
|
core.config.mods.push(mod); // purposely not using `config.set()` to avoid auto-save
|
|
|
|
|
2018-03-14 13:26:53 +08:00
|
|
|
let newMod = server.findSockets({ trip: data.trip });
|
|
|
|
|
|
|
|
if (newMod.length !== 0) {
|
|
|
|
for (let i = 0, l = newMod.length; i < l; i++) {
|
|
|
|
newMod[i].uType = 'mod';
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2018-03-14 13:26:53 +08:00
|
|
|
server.send({
|
2018-03-10 15:47:00 +08:00
|
|
|
cmd: 'info',
|
|
|
|
text: 'You are now a mod.'
|
2018-03-14 13:26:53 +08:00
|
|
|
}, newMod[i]);
|
2018-03-10 15:47:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `Added mod trip: ${data.trip}`
|
|
|
|
}, socket);
|
|
|
|
|
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `Added mod trip: ${data.trip}`
|
|
|
|
}, { uType: 'mod' });
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.requiredData = ['trip'];
|
|
|
|
|
2018-05-13 18:33:22 +08:00
|
|
|
exports.info = {
|
|
|
|
name: 'addmod',
|
|
|
|
usage: 'addmod {trip}',
|
|
|
|
description: 'Adds target trip to the config as a mod and upgrades the socket type'
|
|
|
|
};
|