Add check to make sure LibsDisguises is actually on the server

This commit is contained in:
Telesphoreo 2022-05-12 22:17:50 -05:00
parent 7bdffd6c0d
commit b3fb0f01f3
No known key found for this signature in database
GPG Key ID: 5ACFFC4682CF849B
1 changed files with 8 additions and 0 deletions

View File

@ -4,14 +4,22 @@ import dev.plex.command.DisguiseToggleCMD;
import dev.plex.command.UndisguiseAllCMD;
import dev.plex.listener.DisguiseListener;
import dev.plex.module.PlexModule;
import dev.plex.util.PlexLog;
import org.bukkit.Bukkit;
public class LibsDisguises extends PlexModule
{
public static boolean enabled = true;
DisguiseListener disguiseListener;
@Override
public void enable()
{
if (!Bukkit.getPluginManager().isPluginEnabled("LibsDisguises"))
{
PlexLog.error("The Plex-LibsDisguises module requires the LibsDisguises plugin to work.");
return;
}
registerCommand(new DisguiseToggleCMD());
registerCommand(new UndisguiseAllCMD());
registerListener(new DisguiseListener());