-
Notifications
You must be signed in to change notification settings - Fork 6.3k
[3.3.5] BS Trainer Dumphry Does Not Teach #20313
Copy link
Copy link
Closed
Description
Description:
Creature entry 21209 (Dumphry) is supposed to be a blacksmithing trainer but he doesn't have the trainer npcflag nor the correct trainer_type. the npc_trainer table has no entries for him either.
Current behaviour:
NPC wouldn't teach anything.
Expected behaviour:
NPC should teach blacksmithing recipes.
Steps to reproduce the problem:
- Talk to NPC.
Branch(es):
both branches (fix for master might be different).
TC rev. hash/commit:
TrinityCore rev. 62f7deb 2017-09-10 17:24:03 +0200 (3.3.5 branch) (Win64, RelWithDebInfo, Static) (worldserver-daemon)
TDB version: 335.63
Operating system: Windows 10 Professional x64
I don't have any sniffs but this is a basic fix to get him working.
UPDATE creature_template SET `npcflag` = `npcflag` | 16, `trainer_type` = 2 WHERE `entry` = 21209;
INSERT INTO npc_trainer VALUES (21209,-201004,0,0,0,0),(21209,-201005,0,0,0,0),(21209,-201006,0,0,0,0);Reactions are currently unavailable