This commit is contained in:
2022-04-09 10:18:39 +03:00
parent 3d4c9ae9ea
commit 1e7387cfa7
11 changed files with 186 additions and 15 deletions

View File

@@ -52,7 +52,7 @@ namespace PluginManager.Commands
DMCommands += cmd.Command + " ";
if (cmd.requireAdmin)
adminCommands += cmd.Command + " ";
else normalCommands += cmd.Command + " ";
else if (cmd.canUseServer) normalCommands += cmd.Command + " ";
}
embedBuilder.AddField("Admin Commands", adminCommands);