diff options
author | r4dish <ovitnez@gmail.com> | 2024-01-07 00:21:46 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-01-26 22:31:08 +0100 |
commit | b4783d6cace49ae0cfe2b0d5059ba776840b307b (patch) | |
tree | c0661e9ea8153344a89a6d02a3e70cbee431a3bd | |
parent | 7e28ee442156880f388800639b8fbdbbb7bba491 (diff) |
DB/Misc: Enable tavern in Shadow Vault (Icecrown). It should only work in phase 1.
Closes #26292
-rw-r--r-- | sql/updates/world/3.3.5/2024_01_26_00_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_01_26_00_world.sql b/sql/updates/world/3.3.5/2024_01_26_00_world.sql new file mode 100644 index 00000000000..43f875acf30 --- /dev/null +++ b/sql/updates/world/3.3.5/2024_01_26_00_world.sql @@ -0,0 +1,7 @@ +-- +DELETE FROM `areatrigger_tavern` WHERE `id` = 5309; +INSERT INTO `areatrigger_tavern` (`id`, `name`) VALUES (5309, 'Shadow Vault'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 30 AND `SourceEntry` = 5309; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(30, 0, 5309, 0, 0, 26, 0, 1, 0, 0, 0, 0, 0, '', 'Shadow Vault tavern requires phase 1.'); |