From 419f5d92b42554c51ef7e2b387c05125fe90cf76 Mon Sep 17 00:00:00 2001 From: P0nk Date: Tue, 1 Jul 2025 17:00:15 +0200 Subject: [PATCH] Allow duplicate drops for the same mob This previously caused a bunch (327 to be exact) of drops to silently not be inserted due to "INSERT _IGNORE_ INTO drop_data (...)" --- src/main/resources/db/009-drop.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/resources/db/009-drop.sql b/src/main/resources/db/009-drop.sql index 5e23e3e9a4..c06b7301db 100644 --- a/src/main/resources/db/009-drop.sql +++ b/src/main/resources/db/009-drop.sql @@ -8,7 +8,6 @@ CREATE TABLE lb_drop_data questid INT NOT NULL DEFAULT '0', chance INT NOT NULL DEFAULT '0', PRIMARY KEY (id), - UNIQUE KEY (dropperid, itemid), KEY mobid (dropperid), INDEX (dropperid, itemid) );