mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-03 15:08:18 +01:00
Implement ConsoleCommandSender methods
This commit is contained in:
parent
a5f8e83e03
commit
583bf88207
@ -765,6 +765,16 @@ public class FakeServer implements Server {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendMessage(final UUID uuid, final String message) {
|
||||
sendMessage(message);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendMessage(final UUID uuid, final String[] messages) {
|
||||
sendMessage(messages);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Server getServer() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
@ -873,7 +883,10 @@ public class FakeServer implements Server {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendRawMessage(final UUID uuid, final String s) {
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user