mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-01-03 22:08:28 +00:00
Implement ConsoleCommandSender methods
This commit is contained in:
parent
a5f8e83e03
commit
583bf88207
1 changed files with 13 additions and 0 deletions
|
@ -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 a new issue