From 6d8d61a8a08baa6660dd39ff577b4630d2331918 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Fri, 26 Dec 2025 14:28:21 -0600 Subject: [PATCH] fix(DB/Quest): Gruesome, But Necessary correct giblet and conditions (#23852) Co-authored-by: blinkysc Co-authored-by: Ryan Turner <16946913+TheSCREWEDSoftware@users.noreply.github.com> Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> --- .../pending_db_world/rev_1763784400438549506.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1763784400438549506.sql diff --git a/data/sql/updates/pending_db_world/rev_1763784400438549506.sql b/data/sql/updates/pending_db_world/rev_1763784400438549506.sql new file mode 100644 index 000000000..6ed2d7920 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1763784400438549506.sql @@ -0,0 +1,11 @@ +-- Winterskorn Vrykul Dismembering Bunny should only be giblet +DELETE FROM `creature_template_model` WHERE `CreatureID` = 24095; +INSERT INTO `creature_template_model` (`CreatureID`, `Idx`, `CreatureDisplayID`, `DisplayScale`, `Probability`, `VerifiedBuild`) VALUES +(24095, 0, 1126, 1, 0, 51831), +(24095, 1, 25628, 1, 1, 51831); + +-- Conditions +DELETE FROM `conditions` WHERE `SourceEntry` = 43036 AND `SourceTypeOrReferenceId` = 17; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17, 0, 43036, 0, 0, 1, 1, 43059, 0, 0, 1, 0, 0, '', 'Spell 43036 (Dismembering Corpse) - Target must not already be transformed'), +(17, 0, 43036, 0, 0, 36, 1, 0, 0, 0, 1, 0, 0, '', 'Spell 43036 (Dismembering Corpse) - Explicit target must be dead');