From 6e94d7499006dafa2f18e76123024de677e87eb3 Mon Sep 17 00:00:00 2001 From: LoJoSho Date: Fri, 21 Oct 2022 11:09:56 -0500 Subject: [PATCH] removed Citizens hook Signed-off-by: LoJoSho --- .../io/github/fisher2911/hmccosmetics/hook/HookManager.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/main/java/io/github/fisher2911/hmccosmetics/hook/HookManager.java b/common/src/main/java/io/github/fisher2911/hmccosmetics/hook/HookManager.java index 5bfbcbbe..490ed843 100644 --- a/common/src/main/java/io/github/fisher2911/hmccosmetics/hook/HookManager.java +++ b/common/src/main/java/io/github/fisher2911/hmccosmetics/hook/HookManager.java @@ -55,10 +55,13 @@ public class HookManager { this.listeners.add(itemsAdderHook); } if (pluginManager.getPlugin("Citizens") != null) { + this.citizensHook = null; + /* this.registerHook(citizensHook.getClass()); this.listeners.add(citizensHook); this.citizensHook = citizensHook; this.plugin.getLogger().info("Successfully Hooked into Citizens!"); + */ } else { this.citizensHook = null; }