power
This commit is contained in:
parent
00ca80f59d
commit
07caa35eef
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -70,7 +70,7 @@ function doCommand(client, event, cmd, args) {
|
|||
if(!command)
|
||||
return false;
|
||||
|
||||
if((command.owner && event.sender.userId != process.env.OWNER_ID) || (command.admin && event.sender.powerLevel != 100 && event.sender.userId != process.env.OWNER_ID)) {
|
||||
if((command.owner && event.sender.userId != process.env.OWNER_ID) || (command.admin && event.sender.powerLevel < 100 && event.sender.userId != process.env.OWNER_ID)) {
|
||||
var addl = `Are you sure this command is for you?\nYour power level is ${event.sender.powerLevel}`;
|
||||
client.reply(event, "nuh uh" + addl, '<img src="mxc://possum.city/b4Vo1BTcq49B7TbFWCqq76HQWQEdNIqq" alt="nuh uh" /><br>' + addl);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue