From ae0dc7bd14e15829cc1dec920ffb1c82ecde15fa Mon Sep 17 00:00:00 2001 From: LoJoSho Date: Wed, 14 Jun 2023 20:29:36 -0500 Subject: [PATCH] fix: Geary Hook --- .../java/com/hibiscusmc/hmccosmetics/hooks/items/HookGeary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/items/HookGeary.java b/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/items/HookGeary.java index 295366e1..48096745 100644 --- a/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/items/HookGeary.java +++ b/common/src/main/java/com/hibiscusmc/hmccosmetics/hooks/items/HookGeary.java @@ -39,7 +39,7 @@ public class HookGeary extends Hook { if (enabled) { PrefabKey prefabKey = PrefabKey.Companion.ofOrNull(itemId); if (prefabKey == null) return null; - return ItemTrackingKt.getItemTracking().createItem(prefabKey, null); + return ItemTrackingKt.getGearyItems().createItem(prefabKey, null); } else return new ItemStack(Material.AIR); } }