diff options
author | Killyana <morphone1@gmail.com> | 2017-12-22 20:20:14 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2017-12-22 20:20:14 +0100 |
commit | be56a4669e6f1b1d34a9a1e2ed19b627e1263cfb (patch) | |
tree | 04700c58ca0bb0e212dfe54c38a5658bc5ed400b | |
parent | 85e460802d0867634003768d7b8be356d236aba3 (diff) |
Scripts/Stratholme: Fix a DB error
Ref #20749
-rw-r--r-- | sql/updates/world/3.3.5/2017_12_21_02_world.sql | 2 | ||||
-rw-r--r-- | src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_12_21_02_world.sql b/sql/updates/world/3.3.5/2017_12_21_02_world.sql new file mode 100644 index 00000000000..b7fece8a3cb --- /dev/null +++ b/sql/updates/world/3.3.5/2017_12_21_02_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `npcflag` = `npcflag` | 2 WHERE `entry` = 16031; diff --git a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp index 658c9dd62b7..556fb045feb 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp @@ -171,6 +171,7 @@ class instance_stratholme : public InstanceMapScript break; case NPC_YSIDA: ysidaGUID = creature->GetGUID(); + me->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_QUESTGIVER); break; } } |