diff options
author | Golrag <golrag.jeremy@gmail.com> | 2025-09-28 08:55:30 +0200 |
---|---|---|
committer | Golrag <golrag.jeremy@gmail.com> | 2025-09-28 08:55:30 +0200 |
commit | c5d4dec24e020c24a3646e99af15e2d4259c585f (patch) | |
tree | 7f2f6a6bbf0cc5c0b2ce2f79441871ab23645839 /sql/updates | |
parent | 13f22e0c06fcce0d76fba3530eff9a1c06c72674 (diff) |
DB/Arenas: update start locations with blizzard ids
- fixed respawn time shadow sight in ruins of lordaeron
Diffstat (limited to 'sql/updates')
-rw-r--r-- | sql/updates/world/master/2025_09_28_00_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_09_28_00_world.sql b/sql/updates/world/master/2025_09_28_00_world.sql new file mode 100644 index 00000000000..10c49fafbe0 --- /dev/null +++ b/sql/updates/world/master/2025_09_28_00_world.sql @@ -0,0 +1,5 @@ +DELETE FROM `world_safe_locs` WHERE `ID` IN (100099, 100100, 100101, 100102); +UPDATE `battleground_template` SET `AllianceStartLoc` = 5816, `HordeStartLoc` = 5817 WHERE `ID` = 844; +UPDATE `battleground_template` SET `AllianceStartLoc` = 6616, `HordeStartLoc` = 6617 WHERE `ID` = 903; + +UPDATE `gameobject` SET `spawntimesecs` = 360 WHERE `guid` IN (167081, 167082); |