Updates for MC 1.14.4

This commit is contained in:
cnaude 2019-07-21 10:14:04 -07:00
parent c068a28259
commit a1a021311e
2 changed files with 12 additions and 0 deletions

View File

@ -234,5 +234,11 @@ public class IRCCommandSender implements CommandSender {
public PermissionAttachment addAttachment(final Plugin arg0, final String arg1, final boolean arg2, final int arg3) {
return null;
}
@Override
public Spigot spigot() {
plugin.logDebug("Spigot?");
return null;
}
}

View File

@ -226,4 +226,10 @@ public class IRCConsoleCommandSender implements ConsoleCommandSender {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public Spigot spigot() {
plugin.logDebug("Spigot?");
return null;
}
}