Added a space

This commit is contained in:
Sekwah 2018-07-05 02:27:16 +01:00
parent c23d7a2d14
commit 4f516a7eb2
2 changed files with 9 additions and 1 deletions

8
.gitignore vendored
View File

@ -1,6 +1,10 @@
*.class
.*
/target/
/build/
/classes/
/run/
/logs/
# Package Files #
*.jar
@ -8,3 +12,7 @@
*.ear
*.iml
*.ipr
*.iws

View File

@ -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!");
}