Update Bukkit for 1.3.1 changes

This commit is contained in:
feildmaster
2012-07-29 02:34:09 -05:00
committed by Travis Watkins
parent 6a53010c0c
commit 110ad8c196
31 changed files with 416 additions and 149 deletions

View File

@@ -2,7 +2,6 @@ package org.bukkit.command.defaults;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
public class PardonCommand extends VanillaCommand {
@@ -22,8 +21,7 @@ public class PardonCommand extends VanillaCommand {
}
Bukkit.getOfflinePlayer(args[0]).setBanned(false);
Command.broadcastCommandMessage(sender, "Pardoning " + args[0]);
sender.sendMessage("Pardoned " + args[0]);
return true;
}