v2.0 #55
2 changed files with 17 additions and 0 deletions
|
@ -31,6 +31,13 @@ class util {
|
|||
}
|
||||
}
|
||||
|
||||
let users = command.users;
|
||||
|
||||
if (!users.includes(message.member.id)) {
|
||||
message.reply(`You do not have permission to run this command`);
|
||||
return;
|
||||
}
|
||||
|
||||
command[command.run]({
|
||||
"command": name,
|
||||
"arguments": args,
|
||||
|
|
|
@ -4,6 +4,7 @@ class command {
|
|||
|
||||
this._roles = [];
|
||||
this._requiredConfigs = [];
|
||||
this._users = [];
|
||||
}
|
||||
|
||||
// Description
|
||||
|
@ -50,6 +51,15 @@ class command {
|
|||
set requiredConfigs(conf) {
|
||||
this._requiredConfigs.push(conf);
|
||||
}
|
||||
|
||||
// Users
|
||||
get users() {
|
||||
return this._users;
|
||||
}
|
||||
|
||||
set users(userid) {
|
||||
this._users.push(userid);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = command;
|
||||
|
|
Reference in a new issue