diff options
| author | Matan Shukry <matanshukry@gmail.com> | 2021-04-21 22:05:46 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-04-21 23:14:02 +0200 |
| commit | dbc082a2b2f34d489ca764906dc3d551583a07bb (patch) | |
| tree | eef29c8b64582012cc99450299aa575568a5f178 /sql | |
| parent | 2e2dc1afc94b5d6864cf7dc8ca5799c349bdca4d (diff) | |
Scripts/Spells: Implemented Atonement
* Also renamed spell_priest_spirit_of_redemption to spell_pri_spirit_of_redemption
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2021_04_21_00_world_priest_atonement.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_04_21_00_world_priest_atonement.sql b/sql/updates/world/master/2021_04_21_00_world_priest_atonement.sql new file mode 100644 index 00000000000..02e7f3f9ce0 --- /dev/null +++ b/sql/updates/world/master/2021_04_21_00_world_priest_atonement.sql @@ -0,0 +1,9 @@ +-- Atonement +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_atonement_triggered', 'spell_pri_power_word_radiance', 'spell_pri_shadow_mend'); +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(194384, 'spell_pri_atonement_triggered'), +(214206, 'spell_pri_atonement_triggered'), +(194509, 'spell_pri_power_word_radiance'), +(186263, 'spell_pri_shadow_mend'); + +UPDATE `spell_script_names` SET `ScriptName` = 'spell_pri_spirit_of_redemption' WHERE `ScriptName` = 'spell_priest_spirit_of_redemption'; |
