Let's have a look at how many loot items are set to drop 100% of the time:
SELECT count(*) FROM lootdrop_entries WHERE chance=100;
+----------+
| count(*) |
+----------+
| 12228 |
+----------+
If the 99% chance loot drop fixes this issue, then change all occurences (sp?) of chance=100 to chance=99:
UPDATE lootdrop_entries SET chance=99 WHERE chance=100;
Try adding this, and testing a few random boss mobs.
Monrezz
|