From c36f83b5efd2c056a8549329e1a02a9923cbaf9c Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Fri, 8 May 2026 08:31:18 -0300 Subject: [PATCH] fix(DB/Conditions): Fix Gloom'rel condition type for Smelt Dark Iron check (#25755) --- .../updates/pending_db_world/fix_gloomrel_condition_type.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/fix_gloomrel_condition_type.sql diff --git a/data/sql/updates/pending_db_world/fix_gloomrel_condition_type.sql b/data/sql/updates/pending_db_world/fix_gloomrel_condition_type.sql new file mode 100644 index 0000000000..4cee190305 --- /dev/null +++ b/data/sql/updates/pending_db_world/fix_gloomrel_condition_type.sql @@ -0,0 +1,2 @@ +UPDATE `conditions` SET `ConditionTypeOrReference` = 25 WHERE `SourceTypeOrReferenceId` = 14 AND `SourceGroup` = 1945 AND `SourceEntry` = 2605 AND `ConditionTypeOrReference` = 16 AND `ConditionValue1` = 14891 AND `NegativeCondition` = 1; +UPDATE `conditions` SET `ConditionTypeOrReference` = 25 WHERE `SourceTypeOrReferenceId` = 15 AND `SourceGroup` = 1945 AND `SourceEntry` = 0 AND `ConditionTypeOrReference` = 16 AND `ConditionValue1` = 14891 AND `NegativeCondition` = 1;