Commands can be sent from the console (WIP, needs improvements)

This commit is contained in:
Dinnerbone 2011-02-01 18:13:12 +00:00
parent 657913faeb
commit 21b8c16886
2 changed files with 9 additions and 1 deletions

View File

@ -15,6 +15,7 @@ import java.util.logging.Logger;
// CraftBukkit start
import java.net.UnknownHostException;
import joptsimple.OptionSet;
import org.bukkit.command.ConsoleCommandSender;
import org.bukkit.craftbukkit.CraftServer;
// CraftBukkit end
@ -46,6 +47,7 @@ public class MinecraftServer implements ICommandListener, Runnable {
}
public CraftServer server;
public OptionSet options;
public ConsoleCommandSender console = new ConsoleCommandSender();
private boolean d() throws UnknownHostException {
// CraftBukkit end -- added throws UnknownHostException
@ -299,6 +301,12 @@ public class MinecraftServer implements ICommandListener, Runnable {
ICommandListener icommandlistener = servercommand.b;
String s1 = icommandlistener.c();
// Craftbukkit start
if (server.dispatchCommand(console, s)) {
continue;
}
// Craftbukkit end
if (!s.toLowerCase().startsWith("help") && !s.toLowerCase().startsWith("?")) {
if (s.toLowerCase().startsWith("list")) {
icommandlistener.b("Connected players: " + this.f.c());

View File

@ -581,7 +581,7 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
private void c(String s) {
// CraftBukkit start
CraftPlayer player = getPlayer();
boolean targetPluginFound = server.dispatchCommand(player, s);
boolean targetPluginFound = server.dispatchCommand(player, s.substring(1));
if (targetPluginFound) {
return;
}