From 85dca338943813d6d1189c6452cdfddeeba46fc1 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Tue, 14 Jul 2020 11:21:48 +0200 Subject: [PATCH] DB/Misc: removed manually set skinnable flag from all creatures as this flag is set during runtime * added a missing trinity string --- sql/updates/world/4.3.4/2020_07_14_01_world.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/world/4.3.4/2020_07_14_01_world.sql diff --git a/sql/updates/world/4.3.4/2020_07_14_01_world.sql b/sql/updates/world/4.3.4/2020_07_14_01_world.sql new file mode 100644 index 00000000000..12dee22bccb --- /dev/null +++ b/sql/updates/world/4.3.4/2020_07_14_01_world.sql @@ -0,0 +1,7 @@ +-- Remove skinnable flag from all units +UPDATE `creature_template` SET `unit_flags`= `unit_flags` &~ 67108864; + +-- Add missing trinity string +DELETE FROM `trinity_string` WHERE `entry`= 1189; +INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES +(1189, 'No instances were found matching your input.');