From 447cfe8291c6df15d2ee1c46fdcaac510af0dc4f Mon Sep 17 00:00:00 2001 From: Marcos Paulo Date: Thu, 20 Aug 2026 16:55:01 -0300 Subject: [PATCH] feat(xp-items): implement instant xp vacuum and spawned item consolidation listener --- src/main/java/dev/marcospaulo/canalhandia/Canalhandia.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/dev/marcospaulo/canalhandia/Canalhandia.java b/src/main/java/dev/marcospaulo/canalhandia/Canalhandia.java index 9e6d8bc..e5029c9 100644 --- a/src/main/java/dev/marcospaulo/canalhandia/Canalhandia.java +++ b/src/main/java/dev/marcospaulo/canalhandia/Canalhandia.java @@ -161,6 +161,7 @@ public final class Canalhandia extends JavaPlugin implements Listener { getServer().getPluginManager().registerEvents(this, this); getServer().getPluginManager().registerEvents(new TitleChatListener(this), this); getServer().getPluginManager().registerEvents(new ChunkLoaderListener(this), this); + getServer().getPluginManager().registerEvents(new XpAndItemMergeListener(this), this); rescheduleTimer(); rescheduleMilestones();