T2CodeLib/src/main/java/net/t2code/t2codelib/BUNGEE/api/commands/T2CBcmd.java

14 lines
489 B
Java

package net.t2code.t2codelib.BUNGEE.api.commands;
import net.md_5.bungee.api.ProxyServer;
import net.md_5.bungee.api.connection.ProxiedPlayer;
public class T2CBcmd {
public static void Console(String cmd){
ProxyServer.getInstance().getPluginManager().dispatchCommand(ProxyServer.getInstance().getConsole(), cmd);
}
public static void Player(ProxiedPlayer player, String cmd){
ProxyServer.getInstance().getPluginManager().dispatchCommand(player, cmd);
}
}