diff --git a/.gitignore b/.gitignore index 41965b4..40f7ae1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,10 @@ *.class .* /target/ +/build/ +/classes/ +/run/ +/logs/ # Package Files # *.jar @@ -8,3 +12,7 @@ *.ear *.iml + +*.ipr + +*.iws diff --git a/src/com/sekwah/advancedportals/AdvancedPortalsCommand.java b/src/com/sekwah/advancedportals/AdvancedPortalsCommand.java index 1c7ef1b..0813e54 100644 --- a/src/com/sekwah/advancedportals/AdvancedPortalsCommand.java +++ b/src/com/sekwah/advancedportals/AdvancedPortalsCommand.java @@ -302,7 +302,7 @@ public class AdvancedPortalsCommand implements CommandExecutor, TabCompleter { if (args.length > 1) { if (Portal.portalExists(args[1])) { player.setMetadata("selectedPortal", new FixedMetadataValue(plugin, args[1])); - player.sendMessage(PluginMessages.customPrefix + " You have selected\u00A7e" + args[1] + "\u00A7a."); + player.sendMessage(PluginMessages.customPrefix + " You have selected\u00A7e " + args[1] + "\u00A7a."); } else { player.sendMessage(PluginMessages.customPrefixFail + " No portal by the name \u00A7e" + args[1] + "\u00A7c exists (maybe you got the caps wrong)\n Try typing \u00A7e/portal select\u00A7c and hit inside the apropriate portals area!"); }