diff options
author | osleyder85 <osleyder85@users.noreply.github.com> | 2019-12-07 18:02:56 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2019-12-07 18:02:56 +0100 |
commit | 4b8f5cedbc76ca44e71bda6f6a14e6fd88e16c90 (patch) | |
tree | 74c13aa3db435ac70d658038e67c06dc4054dad8 | |
parent | 61f2eed3531ebfd2585ab05add31ae9e97598233 (diff) |
DB: Change of the "Silithus" map to "Silithus: The Wound" upon reaching level 110
Closes #23939
-rw-r--r-- | sql/updates/world/master/2019_12_07_00_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/master/2019_12_07_00_world.sql b/sql/updates/world/master/2019_12_07_00_world.sql new file mode 100644 index 00000000000..6e8307cee0b --- /dev/null +++ b/sql/updates/world/master/2019_12_07_00_world.sql @@ -0,0 +1,12 @@ +-- +DELETE FROM `terrain_swap_defaults` WHERE `TerrainSwapMap` = 1817; +INSERT INTO `terrain_swap_defaults` (`MapId`, `TerrainSwapMap`, `Comment`) VALUES +(1, 1817, 'Silithus: The Wound'); + +DELETE FROM `terrain_worldmap` WHERE `TerrainSwapMap` = 1817; +INSERT INTO `terrain_worldmap` (`TerrainSwapMap`, `UiMapPhaseId`, `Comment`) VALUES +(1817, 9491, 'Silithus: The Wound'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 25 AND `SourceEntry` = 1817; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(25, 0, 1817, 0, 0, 27, 0, 110, 3, 0, 0, 0, 0, '', 'TerrainSwap 1817 only when player has level 110'); |