aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorxinef1 <w.szyszko2@gmail.com>2017-03-27 06:41:53 +0200
committerAokromes <Aokromes@users.noreply.github.com>2017-03-27 06:41:53 +0200
commite72b380b9374c92e5688002bf3a15065419a2ea0 (patch)
tree5a953a4ea3c2253ea8a13e8594bd354c8f711ff2 /sql
parent5bc4b5d6f4909ce43d25f4b3eb167ba50265e348 (diff)
Added new creature extra flag which makes npc visible only to dead units
closes #19333 * Rename 9999_99_99_99_world.sql to 2017_99_99_99_world_335.sql - file affects creature removed in patch 4.0.3a * Update Creature.cpp
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/3.3.5/2017_99_99_99_world_335.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_99_99_99_world_335.sql b/sql/updates/world/3.3.5/2017_99_99_99_world_335.sql
new file mode 100644
index 00000000000..3d941c56bd0
--- /dev/null
+++ b/sql/updates/world/3.3.5/2017_99_99_99_world_335.sql
@@ -0,0 +1,11 @@
+
+-- Franclorn Forgewright
+SET @ENTRY := 8888;
+UPDATE `creature_template` SET `flags_extra`=`flags_extra`|0x400 WHERE `entry`=@ENTRY;
+
+-- Gaeriyan
+SET @ENTRY := 9299;
+UPDATE `creature_template` SET `flags_extra`=`flags_extra`|0x400 WHERE `entry`=@ENTRY;
+
+-- Shroud of Death Spell
+DELETE FROM `spell_script_names` WHERE spell_id=10848;