From f4be7b1e2b0a15d472c34f344aa8f7a3cba9314f Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Sun, 10 May 2026 11:33:24 -0300 Subject: [PATCH] fix(DB/Quest): On Ruby Wings - prevent Antiok idle despawn pre-engage (#25785) Co-authored-by: Claude Opus 4.7 --- .../updates/pending_db_world/rev_1778350030492406400.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1778350030492406400.sql diff --git a/data/sql/updates/pending_db_world/rev_1778350030492406400.sql b/data/sql/updates/pending_db_world/rev_1778350030492406400.sql new file mode 100644 index 000000000..7dc4159c2 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1778350030492406400.sql @@ -0,0 +1,6 @@ +-- Restore TEMPSUMMON_MANUAL_DESPAWN (8) with no timer for Thiassi -> Antiok +-- accessory. With timer 0 this is rewritten to TEMPSUMMON_DEAD_DESPAWN at +-- runtime, so Antiok only despawns when he dies and no longer ticks down +-- while seated on Thiassi pre-engage. +UPDATE `vehicle_template_accessory` SET `summontype` = 8, `summontimer` = 0 + WHERE `entry` = 28018 AND `accessory_entry` = 28006;