diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2023-04-05 09:30:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 09:30:33 +0200 |
commit | d246fad46950d7b29ae7f8765a3f5ec87145f24e (patch) | |
tree | 4c0c18550c0a6e29f413d48e9b4f910fe572458f /sql | |
parent | 60b75e3b6e81d5085070101c5153f6695dedb6ca (diff) |
DB/Creature: Fix some startup errors
closes #28711 by CraftedRO
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2023_04_05_00_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2023_04_05_00_world.sql b/sql/updates/world/3.3.5/2023_04_05_00_world.sql new file mode 100644 index 00000000000..e6439cc825b --- /dev/null +++ b/sql/updates/world/3.3.5/2023_04_05_00_world.sql @@ -0,0 +1,6 @@ +-- +UPDATE `creature_template_addon` SET `SheathState`=0 WHERE `entry` IN (11280,30731,32643,34045); +UPDATE `creature_template_addon` SET `SheathState`=1 WHERE `entry` =11316; + +UPDATE `creature_addon` SET `SheathState`=0, `StandState`=5 WHERE `guid` =135230;-- fix phantom guest sit on medium chair +UPDATE `creature_addon` SET `SheathState`=1 WHERE `guid` IN (8143,8146,8147,63387,78195,78196,78197,78198,82292,112378); |