mirror of
https://github.com/danbulant/Shasha
synced 2026-06-09 01:20:58 +00:00
uhh "forgot" array...
This commit is contained in:
parent
0b83136fbe
commit
8388ab41d0
4 changed files with 5 additions and 4 deletions
|
|
@ -14,7 +14,7 @@ module.exports = class newquoteotd extends commando.Command {
|
||||||
group: "utility",
|
group: "utility",
|
||||||
description: "The Life exclusive command for Quote of the day.",
|
description: "The Life exclusive command for Quote of the day.",
|
||||||
guildOnly: true,
|
guildOnly: true,
|
||||||
userPermissions:"ADMINISTRATOR"
|
userPermissions:["ADMINISTRATOR"]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async run(msg, arg) {
|
async run(msg, arg) {
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ module.exports = class quoteotd extends commando.Command {
|
||||||
description: "Set Quote of the day channel and settings.",
|
description: "Set Quote of the day channel and settings.",
|
||||||
details:"```\n--channel\n--text\n--icon```",
|
details:"```\n--channel\n--text\n--icon```",
|
||||||
guildOnly: true,
|
guildOnly: true,
|
||||||
userPermissions:"ADMINISTRATOR"
|
userPermissions:["ADMINISTRATOR"]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async run(msg, arg) {
|
async run(msg, arg) {
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ module.exports = class send extends commando.Command {
|
||||||
memberName: "send",
|
memberName: "send",
|
||||||
group: "utility",
|
group: "utility",
|
||||||
description: "Send message to designated channel.",
|
description: "Send message to designated channel.",
|
||||||
userPermissions:"MANAGE_MESSAGES"
|
userPermissions:["MANAGE_MESSAGES"]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async run(msg, args ) {
|
async run(msg, args ) {
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,8 @@ module.exports = class setfootq extends commando.Command {
|
||||||
aliases:["setfooterquote"],
|
aliases:["setfooterquote"],
|
||||||
memberName: "setfootq",
|
memberName: "setfootq",
|
||||||
group: "utility",
|
group: "utility",
|
||||||
description: "Set server embed footer text."
|
description: "Set server embed footer text.",
|
||||||
|
userPermissions: ["ADMINISTRATOR"]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
async run(msg, args) {
|
async run(msg, args) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue