[Temp-fix] Crudely-Written Log Drop Bug temp-fix.

Since the item Crudely-Written Log (entry 12842) does not drop no matter what.

I’ve checked the creature_loot_template…

For High Chief Winterfall (entry 10738) there is…

creature_loot_template VALUES (10738, 12842, 100, 1, 0, 1, 1);

… which is the correct entry for the creature and the correct entry for the item.

Problem is that the damned Log does NOT drop at all.

Tried before picking up the High Chief Winterfall quest (Id 5121), nothing.

Tried while ON the quest (as it is supposed to be), nothing.

Tried after I turned in the quest, nothing.

With a rate of 100 (100%) and it NOT dropping at all, something is seriously wrong somewhere.

So I did a TEMPORARY fix for it…

https://github.com/TrinityCore/TrinityCore/issues/2380

/* Temp Fix for “Crudely-Written Log” Drop Bug.
It is SUPPOSED to drop while you are ON the “High Chief Winterfall” quest (Id 5121) but it doesnt.
Nor does it drop before OR after you pick up the quest OR turn it in.
The item “Crudely-Written Log” (12842) IS in the High Chief Winterfall loot_template (entry 10738) but it just does not drop.
This is VERY ODD indeed. So this temp fix will have to do for now. */
UPDATE quest_template SET RewardItemId1=12842, RewardItemCount1=1 WHERE Id=5121;

I know it isn’t how it is supposed to be, but it is a temp-fix.

I’ve tested it, the quest rewards the Log along with the selected item and you can accept the quest from the Log no problem.

Screens…

[ATTACH]1014._xfImport[/ATTACH] [ATTACH]1015._xfImport[/ATTACH] [ATTACH]1016._xfImport[/ATTACH]

I don’t know why it doesn’t drop when it has a 100% chance.