20 lines
346 B
Java
20 lines
346 B
Java
|
|
package org.bukkit.command;
|
|
|
|
/**
|
|
* Represents CLI input from a console
|
|
*/
|
|
public class ConsoleCommandSender implements CommandSender {
|
|
public void sendMessage(String message) {
|
|
System.out.println(message);
|
|
}
|
|
|
|
public boolean isOp() {
|
|
return true;
|
|
}
|
|
|
|
public boolean isPlayer() {
|
|
return false;
|
|
}
|
|
}
|