Added localized message for "Creating your island"

This commit is contained in:
Florian CUNY 2018-01-03 21:19:48 +01:00
parent c28853e301
commit f8c1dba503
2 changed files with 2 additions and 1 deletions

View File

@ -50,6 +50,7 @@ commands:
create:
description: "create an island"
unable-create-island: "Your island could not be generated, please contact an administrator."
creating-island: "Creating your island..."
info:
description: "display info about your island"
reset:

View File

@ -43,7 +43,7 @@ public class IslandCreateCommand extends CompositeCommand {
if (getPlayers().inTeam(user.getUniqueId())) {
return false;
}
user.sendRawMessage("Creating island...");
user.sendMessage("commands.island.create.creating-island");
createIsland(user);
return true;
}