diff options
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/1159_world.sql | 10 | ||||
-rw-r--r-- | sql/updates/CMakeLists.txt | 3 |
2 files changed, 12 insertions, 1 deletions
diff --git a/sql/updates/1159_world.sql b/sql/updates/1159_world.sql new file mode 100644 index 00000000000..b237e0422c4 --- /dev/null +++ b/sql/updates/1159_world.sql @@ -0,0 +1,10 @@ +DELETE from `spell_affect` where entry=16999; +DELETE from `spell_affect` where entry=16998; +INSERT INTO `spell_affect` VALUES (16998, 0, 0x40000001000); +INSERT INTO `spell_affect` VALUES (16998, 1, 0x40000001000); +INSERT INTO `spell_affect` VALUES (16998, 2, 0x40000001000); +INSERT INTO `spell_affect` VALUES (16999, 0, 0x40000001000); +INSERT INTO `spell_affect` VALUES (16999, 1, 0x40000001000); +INSERT INTO `spell_affect` VALUES (16999, 2, 0x40000001000); + + diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt index ab0bad2f196..c21a645c696 100644 --- a/sql/updates/CMakeLists.txt +++ b/sql/updates/CMakeLists.txt @@ -170,5 +170,6 @@ INSTALL(FILES 1074_world_scripts.sql 1138_world.sql 1142_world.sql -1156_world.sql +1159_world.sql +1160_world.sql DESTINATION share/trinity/sql/updates) |