geforkt von Mirrors/Paper
Commands can be sent from the console (WIP, needs improvements)
Dieser Commit ist enthalten in:
Ursprung
657913faeb
Commit
21b8c16886
@ -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());
|
||||
|
@ -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;
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren