Skip to content

Commit

Permalink
[Enhancement] renamed removerole to delrole
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Nov 4, 2021
1 parent 91bf51f commit ee3a027
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/Admin/removerole.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ const { embedMessage } = require("../../modules/embedSimple");
const { getGuildUserFromMention } = require("../../modules/getUserFromMention");

module.exports = {
name: "removerole",
name: "delrole",
args: true,
description: "Removes a role from a user",
usage: "removerole <user> <role name>",
usage: "delrole <user> <role name>",
async run(message, args, client) {
const guildUser = getGuildUserFromMention(args[0], message);
const roleName = args[1];
Expand Down

0 comments on commit ee3a027

Please sign in to comment.