Merge Greg's branch into Hax's branch #228
2 changed files with 4 additions and 4 deletions
|
|
@ -36,7 +36,7 @@ public class CommandHandler {
|
|||
CommandEvent commandEvent = new CommandEvent(event.getJDA(), event.getResponseNumber(), event.getMessage(), rethink,
|
||||
config, this, helpCommand, new MessageEditor(rethink, event.getAuthor()));
|
||||
if (cmd.getClass().getAnnotations().length>0) {
|
||||
if (Arrays.asList(cmd.getClass().getAnnotations()).contains(Perms.class)) {
|
||||
if (!Arrays.asList(cmd.getClass().getAnnotations()).contains(Perms.class)) {
|
||||
for (Perm perm : cmd.getClass().getAnnotation(Perms.class).value()) {
|
||||
if (!perm.check(commandEvent)) {
|
||||
commandEvent.getTextChannel()
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ commands.moderation.clear.message.error.title = No messages!
|
|||
commands.moderation.clear.message.error.description = There are no messages in this channel.
|
||||
commands.moderation.clear.help.description = Deletes the specified number of messages.
|
||||
commands.moderation.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the guild to %extra%
|
||||
commands.moderation.prefix.success.description = I successfully set the new prefix for the guild to `%extra%`.
|
||||
commands.moderation.prefix.error.description = The prefix must not contain **"**
|
||||
commands.moderation.prefix.help.description = Sets the Guild-Prefix.
|
||||
commands.moderation.invitedetect.activate.success.title = Successfully activated
|
||||
|
|
@ -214,9 +214,9 @@ commands.owner.test.success = TEST my friends
|
|||
commands.owner.test.help.description = Just a little Test Command
|
||||
|
||||
commands.settings.language.success.title = Language set
|
||||
commands.settings.language.success.description = %extra% is your new language now.
|
||||
commands.settings.language.success.description = `%extra%` is your new language now.
|
||||
commands.settings.language.help.description = Sets the new primary language for a user.
|
||||
commands.settings.language.help.usage = <Language code>
|
||||
commands.settings.prefix.success.title = %extra% Successfully set %extra%
|
||||
commands.settings.prefix.success.description = I successfully set the new prefix for you to %extra%.
|
||||
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
|
||||
commands.settings.prefix.help.description = Sets a new Prefix
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue