Update to 1.10 #47

Merged
ShadowRanger merged 3 commits from master into master 2016-06-09 08:49:02 -04:00
14 changed files with 108 additions and 82 deletions
Showing only changes of commit eaabd30dc2 - Show all commits

View File

@@ -58,7 +58,7 @@ public class OpenInvCommand implements CommandExecutor {
}
if (args.length > 0 && args[0].equalsIgnoreCase("?")) {
OpenInv.showHelp((Player) sender);
OpenInv.showHelp(sender);
return true;
}
@@ -76,8 +76,7 @@ public class OpenInvCommand implements CommandExecutor {
// Read from history if target is not named
if (args.length < 1) {
uuid = history;
}
else {
} else {
uuid = UUIDUtils.getPlayerUUID(args[0]);
if (uuid == null) {
player.sendMessage(ChatColor.RED + "Player not found!");