From 7d56e9f24622cc16b60c1e23c1affcb809bd6772 Mon Sep 17 00:00:00 2001 From: bowser0000 Date: Tue, 18 Aug 2020 19:00:43 -0400 Subject: Remove mandatory parameter from /getkey No reason to have a parameter if you can't not have a parameter. --- src/main/java/me/Danker/commands/GetkeyCommand.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'src/main/java/me/Danker/commands/GetkeyCommand.java') diff --git a/src/main/java/me/Danker/commands/GetkeyCommand.java b/src/main/java/me/Danker/commands/GetkeyCommand.java index d32a56e..f06e66f 100644 --- a/src/main/java/me/Danker/commands/GetkeyCommand.java +++ b/src/main/java/me/Danker/commands/GetkeyCommand.java @@ -40,14 +40,10 @@ public class GetkeyCommand extends CommandBase implements ICommand { if (cf.getString("api", "APIKey").equals("")) { player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "API key not set. Set your API key using /setkey.")); } - else if (arg1.length == 0) { - player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Your set API key is " + EnumChatFormatting.DARK_GREEN + cf.getString("api", "APIKey"))); - } else if (arg1[0].equalsIgnoreCase("clipboard")){ - clipboard.setContents(stringSelection, null); - player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Your set API key has been copied to the clipboard.")); - } else { - player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Wrong command usage: /getkey (clipboard)")); - } + + clipboard.setContents(stringSelection, null); + player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Your set API key is " + EnumChatFormatting.DARK_GREEN + cf.getString("api", "APIKey") + "\n" + + EnumChatFormatting.GREEN + "Your set API key has been copied to the clipboard.")); } -- cgit