From 2ce220c54889c4fbbb128ab2e95e036eabba4ba7 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Wed, 15 Apr 2026 23:05:57 +0200 Subject: [PATCH] fix(DB/SAI): Solve Captured Rageclaw spawn and text issue. (#25477) --- data/sql/updates/pending_db_world/rev_1776277653.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1776277653.sql diff --git a/data/sql/updates/pending_db_world/rev_1776277653.sql b/data/sql/updates/pending_db_world/rev_1776277653.sql new file mode 100644 index 000000000..9a4673f58 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1776277653.sql @@ -0,0 +1,6 @@ + +-- Set respawn time on 0 (17 - Force Despawn). +UPDATE `smart_scripts` SET `action_param2` = 0 WHERE (`entryorguid` = 29686) AND (`source_type` = 0) AND (`id` IN (7)); + +-- Set Text Type on 12 (say). +UPDATE `creature_text` SET `Type` = 12 WHERE (`CreatureID` = 29686) AND (`GroupID` = 0);