Colouring added as well as general grammar cleanup

Rephrased some messages, and added colour when there is no world folder found.
This commit is contained in:
TWSSYesterday 2014-06-17 12:12:52 +01:00
parent 79f8f6bd55
commit c607aa1c47
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ public class ImportCommand extends MultiverseCommand {
sender.sendMessage(ChatColor.AQUA + "====[ These look like worlds ]====");
sender.sendMessage(worldList);
} else {
sender.sendMessage(ChatColor.RED + "No potential worlds found. Sorry!");
sender.sendMessage(ChatColor.RED + "Sorry, but no potential worlds were found.");
}
return;
}
@ -155,7 +155,7 @@ public class ImportCommand extends MultiverseCommand {
} else {
sender.sendMessage(ChatColor.RED + "FAILED.");
String worldList = this.getPotentialWorlds();
sender.sendMessage("That world folder does not exist. These look like worlds to me:");
sender.sendMessage(ChatColor.RED + "That world folder does not exist. These look like worlds to me:");
sender.sendMessage(worldList);
}
}