diff options
| -rw-r--r-- | data/sql/DB - FIX/2016_08_27_01.sql | 11 | ||||
| -rw-r--r-- | src/scripts/World/go_scripts.cpp | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/data/sql/DB - FIX/2016_08_27_01.sql b/data/sql/DB - FIX/2016_08_27_01.sql new file mode 100644 index 0000000000..5ba659fb00 --- /dev/null +++ b/data/sql/DB - FIX/2016_08_27_01.sql @@ -0,0 +1,11 @@ +/* +Issue: Not work quest id 10990 10991 10992 #114 +NPCs spawns are inside the Gobjs +*/ + +UPDATE gameobject_template SET AIName="SmartGameObjectAI", ScriptName = "" WHERE entry IN (185551,185547,185553); +DELETE FROM smart_scripts WHERE entryorguid IN (185551,185547,185553) AND source_type=1; +INSERT INTO smart_scripts VALUES +(185551,1,0,0,64,0,100,0,0,0,0,0,12,22992,7,0,0,0,0,7,0,0,0,0,0,0,0,"Hawk Shrine - On Gossip Hello - Summon Creature 22992"), +(185547,1,0,0,64,0,100,0,0,0,0,0,12,22993,7,0,0,0,0,7,0,0,0,0,0,0,0,"Eagle Shrine - On Gossip Hello - Summon Creature 22993"), +(185553,1,0,0,64,0,100,0,0,0,0,0,12,22994,7,0,0,0,0,7,0,0,0,0,0,0,0,"Hawk Shrine - On Gossip Hello - Summon Creature 22994"); diff --git a/src/scripts/World/go_scripts.cpp b/src/scripts/World/go_scripts.cpp index 5b6840b931..e13b30776f 100644 --- a/src/scripts/World/go_scripts.cpp +++ b/src/scripts/World/go_scripts.cpp @@ -448,7 +448,7 @@ public: /*###### ## go_shrine_of_the_birds ######*/ - +/* enum ShrineOfTheBirds { NPC_HAWK_GUARD = 22992, @@ -490,7 +490,7 @@ public: return false; } }; - +*/ /*###### ## go_southfury_moonstone ######*/ |
