diff options
author | ModoX <moardox@gmail.com> | 2024-02-09 11:03:39 +0100 |
---|---|---|
committer | ModoX <moardox@gmail.com> | 2024-02-09 11:03:39 +0100 |
commit | ef0ba42fea835dccdaeec588a63faa539e12bb7d (patch) | |
tree | 5e8681a9ffc48e778e3c85c1a5209e0f94124c44 | |
parent | d8906da6dd613c82e23963340abd21f639f93ec8 (diff) |
DB/Spells: Set SchoolMask of recently added spell_proc entries to 0 as its not required for those spells and the field is optional
-rw-r--r-- | sql/updates/world/master/2024_02_09_05_world.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_02_09_05_world.sql b/sql/updates/world/master/2024_02_09_05_world.sql new file mode 100644 index 00000000000..122cd658c43 --- /dev/null +++ b/sql/updates/world/master/2024_02_09_05_world.sql @@ -0,0 +1 @@ +UPDATE `spell_proc` SET `SchoolMask`=0x00 WHERE `SpellId` IN(390786 /*Weal and Woe*/, 390787 /*Weal and Woe*/, 390668 /*Apathy*/, 377438 /*Words of the Pious*/, 198068 /*Power of the Dark Side*/, 390691 /*Borrowed Time*/, 114255 /*Surge of Light*/, 215768 /*Blaze of Light*/, 390615 /*From Darkness Comes Light*/, 390617 /*From Darkness Comes Light*/, 193063 /*Protective Light*/, 390676 /*Inspiration*/, 64129 /*Body and Soul*/); |