aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/MylesAndMore/tumble/commands/SetWorldConfig.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/MylesAndMore/tumble/commands/SetWorldConfig.java b/src/main/java/com/MylesAndMore/tumble/commands/SetWorldConfig.java
index cbce846..94df4eb 100644
--- a/src/main/java/com/MylesAndMore/tumble/commands/SetWorldConfig.java
+++ b/src/main/java/com/MylesAndMore/tumble/commands/SetWorldConfig.java
@@ -31,7 +31,7 @@ public class SetWorldConfig implements CommandExecutor {
PluginManager.getPlugin().saveConfig();
// Feedback
sender.sendMessage(ChatColor.GREEN + "Lobby world successfully linked: " + ChatColor.GRAY + world);
- sender.sendMessage(ChatColor.RED + "Please restart your server for the changes to take effect; reloading is NOT enough!");
+ sender.sendMessage(ChatColor.RED + "Please restart your server for the changes to take effect; reloading the plugin is insufficient!");
}
// Feedback for duplicate world configuration
else {
@@ -50,7 +50,7 @@ public class SetWorldConfig implements CommandExecutor {
PluginManager.getPlugin().getConfig().set("gameWorld", world);
PluginManager.getPlugin().saveConfig();
sender.sendMessage(ChatColor.GREEN + "Game world successfully linked: " + ChatColor.GRAY + world);
- sender.sendMessage(ChatColor.RED + "Please restart your server for the changes to take effect; reloading is NOT enough!");
+ sender.sendMessage(ChatColor.RED + "Please restart your server for the changes to take effect; reloading the plugin is insufficient!");
}
else {
sender.sendMessage(ChatColor.RED + "That world has already been linked, please choose/create another world!");