Teach the API about Remote Consoles

This will allow us to raise events for remote consoles, and provide access
to them at a later date. Relates to BUKKIT-220

By: Andrew Ardill <andrew.ardill@gmail.com>
This commit is contained in:
Bukkit/Spigot
2011-12-07 16:37:35 +11:00
parent 1d06c840a4
commit a4a2fa8690
3 changed files with 18 additions and 3 deletions

View File

@@ -9,10 +9,15 @@ import org.bukkit.command.ConsoleCommandSender;
public class ServerCommandEvent extends ServerEvent {
private String command;
private CommandSender sender;
@Deprecated
public ServerCommandEvent(ConsoleCommandSender console, String message) {
super(Type.SERVER_COMMAND);
command = message;
sender = console;
this(Type.SERVER_COMMAND, console, message);
}
public ServerCommandEvent(Type type, CommandSender sender, String command) {
super(type);
this.command = command;
this.sender = sender;
}
/**