diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2024-08-03 11:51:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-03 11:51:12 +0200 |
commit | d89dfdbbc1faf5a8c91f9c8ab10c32bb3e503f9f (patch) | |
tree | b716ca8a6ced15e2bc62e83f686adfc7986f7e16 /sql/updates | |
parent | bf53f81d594c1a0acafd3d109f036918e3e652b4 (diff) |
DB/Quest: Lightning Infused Relics
updates #26820 by CraftedRO
Diffstat (limited to 'sql/updates')
-rw-r--r-- | sql/updates/world/3.3.5/2024_08_03_00_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_08_03_00_world.sql b/sql/updates/world/3.3.5/2024_08_03_00_world.sql new file mode 100644 index 00000000000..025b6926e29 --- /dev/null +++ b/sql/updates/world/3.3.5/2024_08_03_00_world.sql @@ -0,0 +1,6 @@ +-- Iron Rune Construct Movement Flags: 0 (None) +UPDATE `creature_template_movement` SET `Ground` = 0, `Swim` = 0, `Flight` = 0 WHERE `CreatureId` = 24825; +-- Iron Rune Construct - Iron Rune Aura +DELETE FROM `creature_template_addon` WHERE `entry`=24825; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `MountCreatureID`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvPFlags`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(24825, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, '44652'); |