What's new

Creature Missing Weapon Fixes

orangefire

Gold Supporter
MoP Premium
Veteran Member
112
2021
91
The rare Qu'Nas in Karasang Wilds was punching me so I double checked Wowhead and confirmed he was in fact supposed to use a sword, so I fixed him to use the sword from the screenshots. Small detail but I figured it's still better to post the fix than not post it.


SQL:
UPDATE creature SET equipment_id = 1 WHERE guid = 518574;
REPLACE INTO `creature_equip_template` (`entry`, `id`, `itemEntry1`, `itemEntry2`, `itemEntry3`) VALUES (50352, 1, 82050, 0, 0);

Found the same issue with Gaarn the Toxic and fixed his weapon as well.


SQL:
UPDATE creature SET equipment_id = 1 WHERE guid = 517592;
INSERT INTO `creature_equip_template` (`entry`, `id`, `itemEntry1`, `itemEntry2`, `itemEntry3`) VALUES (50340, 1, 87465, 0, 0);

Fixed Torik-Ethis who had the same issue as well.

SQL:
UPDATE creature SET equipment_id = 1 WHERE guid = 518460;
REPLACE INTO `creature_equip_template` (`entry`, `id`, `itemEntry1`, `itemEntry2`, `itemEntry3`) VALUES (50388, 1, 94720, 94720, 0);
 
Last edited:
Top