Add 1.14 lantern

This commit is contained in:
Mike Primm 2019-05-26 00:07:01 -05:00
parent 34738a70f4
commit 5ba25420a0
3 changed files with 10 additions and 1 deletions

View file

@ -966,7 +966,10 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
else {
dsender = new BukkitCommandSender(sender);
}
return core.processCommand(dsender, cmd.getName(), commandLabel, args);
if (core != null)
return core.processCommand(dsender, cmd.getName(), commandLabel, args);
else
return false;
}