From e01d178b2312f092c62dbb6c81b20168c2d6522f Mon Sep 17 00:00:00 2001 From: iambibi Date: Tue, 8 Sep 2026 10:56:47 +0200 Subject: [PATCH] change: add uuid to error shop --- .../core/features/shops/managers/ShopDatabaseManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/fr/openmc/core/features/shops/managers/ShopDatabaseManager.java b/src/main/java/fr/openmc/core/features/shops/managers/ShopDatabaseManager.java index c6782c187..9b86ba439 100644 --- a/src/main/java/fr/openmc/core/features/shops/managers/ShopDatabaseManager.java +++ b/src/main/java/fr/openmc/core/features/shops/managers/ShopDatabaseManager.java @@ -55,7 +55,7 @@ public static void initDB(ConnectionSource connectionSource) throws SQLException Location loc = new Location(Bukkit.getWorld("world"), shop.getX(), shop.getY(), shop.getZ()); if (shop.getMultiblock() == null) { if (!shop.setMultiblock(new Shop.Multiblock(loc, loc.clone().add(0, 1, 0)))) { - OMCLogger.error("Cannot set multiblock for {}, but shop is registered", shop.getName()); + OMCLogger.error("Cannot set multiblock for {} {}, but shop is registered", shop.getName(), shop.getShopUUID()); } } shopsByLocation.put(loc, shop);