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 (...)"
This commit is contained in:
P0nk
2025-07-01 17:00:15 +02:00
parent 05ca945145
commit 419f5d92b4

View File

@@ -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)
);