Hi, so awhile ago I followed a tutorial on how to send commands to all spigot servers globally and it will only send commands when players are on servers (like if I did /global stop, it doesn't stop the server)
Bungee:
Global Command only sends to Spigot servers with players on them
Bungee:
Code (Text):
public class GlobalCommand extends Command{
TextComponent message = new TextComponent();
public GlobalCommand() {
super("global");
}
@Override
public void execute(CommandSender sender, String[] args) {
if (args.length == 0) {...
TextComponent message = new TextComponent();
public GlobalCommand() {
super("global");
}
@Override
public void execute(CommandSender sender, String[] args) {
if (args.length == 0) {...