use of me.lucko.luckperms.bukkit.listeners.BukkitPlatformListener in project LuckPerms by lucko.
the class LPBukkitPlugin method registerPlatformListeners.
@Override
protected void registerPlatformListeners() {
this.connectionListener = new BukkitConnectionListener(this);
this.bootstrap.getServer().getPluginManager().registerEvents(this.connectionListener, this.bootstrap);
this.bootstrap.getServer().getPluginManager().registerEvents(new BukkitPlatformListener(this), this.bootstrap);
}
Aggregations