Implemented Server.getPluginCommand
Dieser Commit ist enthalten in:
Ursprung
b396707cb9
Commit
ec0dde071d
@ -287,4 +287,14 @@ public final class CraftServer implements Server {
|
|||||||
public ConsoleReader getReader() {
|
public ConsoleReader getReader() {
|
||||||
return console.reader;
|
return console.reader;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public PluginCommand getPluginCommand(String name) {
|
||||||
|
Command command = commandMap.getCommand(name);
|
||||||
|
|
||||||
|
if (command instanceof PluginCommand) {
|
||||||
|
return (PluginCommand)command;
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren