diff options
author | Giacomo Pozzoni <giacomopoz@gmail.com> | 2020-07-22 17:32:29 +0000 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-23 22:35:00 +0100 |
commit | 1dfcb7086e17902f0904ee6c09bc55a229b65cc1 (patch) | |
tree | c96ffc9f1f6bc30e100aa67af193143b592ee956 /sql | |
parent | 3499f518b52552a411e2b1cbdc3d922e64347f02 (diff) |
Core/Combat: Disable triggers entering combat (#25086)
* Core/Combat: Disable triggers entering combat
* Move check to database flags_extra flag in creature_template with value 0x00002000
* Fix Rotface puddle stalker too
* Rename 9999_99_99_99_world.sql to 2020_07_22_00_world.sql
(cherry picked from commit 6440c3bcac85a40de5c34aef1d8a8856966cc140)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2022_01_23_02_world_2020_07_22_00_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_01_23_02_world_2020_07_22_00_world.sql b/sql/updates/world/master/2022_01_23_02_world_2020_07_22_00_world.sql new file mode 100644 index 00000000000..4f59b08a38a --- /dev/null +++ b/sql/updates/world/master/2022_01_23_02_world_2020_07_22_00_world.sql @@ -0,0 +1,5 @@ +-- +UPDATE creature_template SET flags_extra = flags_extra | 0x00002000 /* CREATURE_FLAG_EXTRA_NO_COMBAT */ WHERE entry IN +(37744 -- ICC Frost Freeze Trap +,37013 -- ICC Rotface Puddle Stalker +); |