From b6f9f4f1445b1be01fad4ef1a48e27839678bfce Mon Sep 17 00:00:00 2001 From: Salmonllama Date: Mon, 27 Jul 2020 22:41:02 -0400 Subject: [PATCH] Remove Debug messages --- .../fsbot/commands/developer/PermissionCommand.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/dev/salmonllama/fsbot/commands/developer/PermissionCommand.java b/src/main/java/dev/salmonllama/fsbot/commands/developer/PermissionCommand.java index 7b5a3f1..676c7d6 100644 --- a/src/main/java/dev/salmonllama/fsbot/commands/developer/PermissionCommand.java +++ b/src/main/java/dev/salmonllama/fsbot/commands/developer/PermissionCommand.java @@ -99,7 +99,6 @@ public class PermissionCommand extends Command { } private void add(CommandContext ctx) { - System.out.println("Add run"); if (ctx.getMessage().getMentionedUsers().isEmpty()) { System.out.println("No mentioned users"); // If no mentioned users, improper usage @@ -107,12 +106,10 @@ public class PermissionCommand extends Command { } String userId = ctx.getMessage().getMentionedUsers().get(0).getIdAsString(); - System.out.println(String.format("Got mentioned user %s", userId)); StaticPermission perm = new StaticPermission.StaticPermissionBuilder(userId).setPermission(ctx.getArgs()[2]).build(); StaticPermissionController.insert(perm).thenAcceptAsync((Void) -> { - System.out.println("Permission added"); EmbedBuilder response = new EmbedBuilder() .setTitle("Permissions Added") .addField("User:", userId)