diff options
author | IntelligentQuantum <IntelligentQuantum@ProtonMail.Com> | 2024-11-14 00:39:09 +0330 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 22:09:09 +0100 |
commit | 4871e1821ff5b77eebf78bc519d7497d57939cb6 (patch) | |
tree | 8fc2cf0a346ce22e208b2a7d107db4b3b631e859 /data | |
parent | 21c5575d1ab5ccf881881d3281cca57086354b08 (diff) |
Fix(Sql/Creature): Correct felguard annihilator ids (#20435)
* Fix(Sql/Creature): Correct felguard annihilator ids
* Update rev_1730699152248147966.sql
* fix fel power
* Update rev_1730699152248147966.sql
Diffstat (limited to 'data')
-rw-r--r-- | data/sql/updates/pending_db_world/rev_1730699152248147966.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/data/sql/updates/pending_db_world/rev_1730699152248147966.sql b/data/sql/updates/pending_db_world/rev_1730699152248147966.sql new file mode 100644 index 0000000000..1156ca40f5 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1730699152248147966.sql @@ -0,0 +1,7 @@ +UPDATE `creature` SET `id1` = 17400 WHERE `guid` IN (138247, 138248, 138249, 138250, 138252, 138253); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceGroup` = 6 AND `SourceEntry` = 17371 AND `ConditionValue1` = 17400; +INSERT INTO `conditions` +(`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) +VALUES +(22, 6, 17371, 0, 1, 29, 1, 17400, 10, 0, 0, 0, 0, '', 'Only cast Fel Power (33111) if a Felguard Annihilator (17400) is nearby'); |