mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
a64f9d2325
All messages reworked.
8 lines
358 B
JavaScript
8 lines
358 B
JavaScript
module.exports = {
|
|
name: 'prefix',
|
|
async execute(msg, args, client, Discord, prefix) {
|
|
if (!args[2]) return msg.channel.send(`Current prefix: \`${client.global.db.guilds[msg.guild.id].prefix}\``);
|
|
client.global.db.guilds[msg.guild.id].prefix = args[2];
|
|
msg.channel.send(`${client.messages.prefixSet} \`${args[2]}\``);
|
|
}
|
|
}; |