forked from Supositware/Haha-Yes
This commit is contained in:
parent
6b6dda4cee
commit
b6f9df9276
2 changed files with 12 additions and 11 deletions
|
@ -1,11 +0,0 @@
|
|||
exports.run = (client, message, args) => {
|
||||
const fs = require("fs");
|
||||
if (message.author.id == "267065637183029248") {
|
||||
// Gets the prefix from the command (eg. "!prefix +" it will take the "+" from it)
|
||||
let newPrefix = message.content.split(" ").slice(1, 2)[0];
|
||||
// change the configuration in memory
|
||||
commands.prefix = newPrefix;
|
||||
// Now we have to save the file.
|
||||
fs.writeFile(".././config.json", JSON.stringify(config), (err) => console.error);
|
||||
}
|
||||
}
|
12
hahayes.js
12
hahayes.js
|
@ -36,4 +36,16 @@ client.on("message", (message) => {
|
|||
}
|
||||
});
|
||||
|
||||
if(message.content.startsWith(config.prefix + "prefix")) {
|
||||
if (message.author.id == "267065637183029248") {
|
||||
// Gets the prefix from the command (eg. "!prefix +" it will take the "+" from it)
|
||||
let newPrefix = message.content.split(" ").slice(1, 2)[0];
|
||||
// change the configuration in memory
|
||||
config.prefix = newPrefix;
|
||||
|
||||
// Now we have to save the file.
|
||||
fs.writeFile("./config.json", JSON.stringify(config), (err) => console.error);
|
||||
}
|
||||
}
|
||||
|
||||
client.login(config.token);
|
Loading…
Reference in a new issue