diff options
author | ariel- <ariel-@users.noreply.github.com> | 2016-07-19 12:45:18 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2016-07-19 12:45:18 -0300 |
commit | 7f6c0d3895929e8b7c997c363246faf75c3bbb17 (patch) | |
tree | ae8000d3057cce4653f3b388e3905344bbd72bd8 | |
parent | f87f7619aa8f8662b79fdb5e190a84c646ad0cb2 (diff) |
DB/Creature: update trainer type for Botanist Alaenra, was wrongly set as class trainer.
Note: there are 2 other creatures like this: SELECT * FROM creature_template where trainer_type = 0 and (npcflag & 16) != 0 and trainer_class = 0;
But one is not spawned (2942) and the other is hostile (14401)
-rw-r--r-- | sql/updates/world/3.3.5/2016_07_19_05_world.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_07_19_05_world.sql b/sql/updates/world/3.3.5/2016_07_19_05_world.sql new file mode 100644 index 00000000000..7363465131c --- /dev/null +++ b/sql/updates/world/3.3.5/2016_07_19_05_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `trainer_type`=2 WHERE `entry`=33639; |