forked from Upstream/CommandPanels
3.20.1.0 #5
This commit is contained in:
parent
ed1b30c6f6
commit
fe32486b0b
@ -4,7 +4,7 @@ name: CommandPanels
|
||||
author: RockyHawk
|
||||
api-version: '1.13'
|
||||
description: Fully Custom GUIs. Make your Server Professional.
|
||||
softdepend: [Essentials, PlaceholderAPI, Vault, HeadDatabase, TokenManager, VotingPlugin, MMOItems, ChestSort]
|
||||
softdepend: [Essentials, PlaceholderAPI, Vault, HeadDatabase, TokenManager, VotingPlugin, MMOItems, ChestSort, floodgate]
|
||||
commands:
|
||||
commandpanel:
|
||||
description: Open a command panel.
|
||||
|
@ -184,7 +184,10 @@ public class CommandPanels extends JavaPlugin{
|
||||
this.getServer().getPluginManager().registerEvents(new ItemFallManager(this), this);
|
||||
this.getServer().getPluginManager().registerEvents(new OpenOnJoin(this), this);
|
||||
this.getServer().getPluginManager().registerEvents(new OutsideClickEvent(this), this);
|
||||
this.getServer().getPluginManager().registerEvents(new OpenFloodgateGUI(this), this);
|
||||
|
||||
if (this.getServer().getPluginManager().isPluginEnabled("floodgate")) {
|
||||
this.getServer().getPluginManager().registerEvents(new OpenFloodgateGUI(this), this);
|
||||
}
|
||||
|
||||
//load in the updater if requested
|
||||
if (Objects.requireNonNull(config.getString("updater.update-checks")).equalsIgnoreCase("true")) {
|
||||
|
Loading…
Reference in New Issue
Block a user