Skip to content

Commit

Permalink
Don't print command help when invalid worlds are provided.
Browse files Browse the repository at this point in the history
  • Loading branch information
feildmaster committed Oct 30, 2013
1 parent 3c9a029 commit 556aa24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
World world = getServer().getWorld(worldName);
if (world == null) {
sender.sendMessage(ChatColor.RED+"Unable to find world '"+worldName+"'.");
return false;
return true;
}
sender.sendMessage(ChatColor.YELLOW+"Saving structures for '"+worldName+"'. See your console for details.");
if (force) {
Expand Down

0 comments on commit 556aa24

Please sign in to comment.