Originally Posted by
metehan
Nightmare, this is a VERY prominent bug on the latest revisions, I have it to. I can verify that this bug is not database side. It is a rather annoying bug, in some revisions it appears some it doesn't, although I do not know which revisions it happens in or what triggers it, I suggest you use 4478, as it has all the major bug fixes and there is no real difference between 4541 and 4478. The bugs are negligible. 4478 is not known to have this bug.
- Metehan
Code:
UPDATE `creature_names` SET male_displayid = 10913 WHERE `entry` BETWEEN '50000' and '50048';
10913 is the displayid , so change that to whatever displayid are of your vendors
Code:
UPDATE `creature_names` SET female_displayid = 0 WHERE `entry` BETWEEN '50000' and '50048';
Code:
UPDATE `creature_names` SET male_displayid2 = 0 WHERE `entry` BETWEEN '50000' and '50048';
Code:
UPDATE `creature_names` SET female_displayid2 = 0 WHERE `entry` BETWEEN '50000' and '50048';
- 50000 and 50046 is the spawn ids for my vendors - so change the values in orange according to your database.