From 5765000ab5f57ec04d3e92fa0fb24548ef5346f7 Mon Sep 17 00:00:00 2001 From: iambibi_ <89582596+iambibi@users.noreply.github.com> Date: Sun, 29 Mar 2026 12:04:18 +0200 Subject: [PATCH 1/2] fix copper golem statue pose with hand main --- .../features/city/listeners/protections/InteractProtection.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/fr/openmc/core/features/city/listeners/protections/InteractProtection.java b/src/main/java/fr/openmc/core/features/city/listeners/protections/InteractProtection.java index 62fa495da..01d3f6fa4 100644 --- a/src/main/java/fr/openmc/core/features/city/listeners/protections/InteractProtection.java +++ b/src/main/java/fr/openmc/core/features/city/listeners/protections/InteractProtection.java @@ -29,7 +29,6 @@ public void onInteract(PlayerInteractEvent event) { Player player = event.getPlayer(); if (event.getAction() == Action.PHYSICAL) return; - if (event.getHand() != EquipmentSlot.HAND) return; if (event.getAction() != Action.RIGHT_CLICK_BLOCK) return; Block clickedBlock = event.getClickedBlock(); From f90ed9accd062faf765d5d52088098328c00d9d9 Mon Sep 17 00:00:00 2001 From: iambibi_ <89582596+iambibi@users.noreply.github.com> Date: Sun, 29 Mar 2026 12:04:57 +0200 Subject: [PATCH 2/2] make /leaderboard not in dev --- src/main/java/fr/openmc/core/features/mainmenu/menus/Page2.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/fr/openmc/core/features/mainmenu/menus/Page2.java b/src/main/java/fr/openmc/core/features/mainmenu/menus/Page2.java index a07177541..6651adecd 100644 --- a/src/main/java/fr/openmc/core/features/mainmenu/menus/Page2.java +++ b/src/main/java/fr/openmc/core/features/mainmenu/menus/Page2.java @@ -102,7 +102,7 @@ public Page2() { leaderboardItem.editMeta(meta -> { meta.setItemModel(NamespacedKey.minecraft("air")); meta.itemName(Component.text("Leaderboard", NamedTextColor.YELLOW)); - meta.lore(List.of(Component.text("/leaderboard", NamedTextColor.DARK_GRAY), Component.text("En cours de développement", NamedTextColor.RED))); + meta.lore(List.of(Component.text("/leaderboard", NamedTextColor.DARK_GRAY))); }); LEADERBOARD_SLOTS.forEach(slot -> content.put(slot, leaderboardItem));