diff --git a/Changelog.txt b/Changelog.txt index e83b2ab3a..6fe4cf712 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -17,7 +17,8 @@ Version 2.0.00-dev = Fixed issue with block interaction returning NPEs = Fixed issue where every block broken had a mining check applied = Fixed issue where every block broken had a herbalism check applied - = Fixed issue where blocks weren't being removed from the watchlist + = Fixed issue where blocks weren't being removed from the watchlist + ! Changed inspect failed message to say inspect rather than whois ! Changed Call of the Wild to activate on left-click rather than right-click ! Changed Blast Mining to track based on Entity ID vs. Location ! Changed mmoedit to save a profile when used (this will make mctop update) diff --git a/src/main/java/com/gmail/nossr50/commands/general/InspectCommand.java b/src/main/java/com/gmail/nossr50/commands/general/InspectCommand.java index 3b61e53b7..ef4b3d55e 100644 --- a/src/main/java/com/gmail/nossr50/commands/general/InspectCommand.java +++ b/src/main/java/com/gmail/nossr50/commands/general/InspectCommand.java @@ -36,7 +36,7 @@ public class InspectCommand implements CommandExecutor { } if (args.length < 1) { - sender.sendMessage(ChatColor.RED + "Proper usage is /whois "); + sender.sendMessage(ChatColor.RED + "Proper usage is /inspect "); return true; }