Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions modules/era/sql/rov/zone_settings.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
-----------------------------------
-- Module: RoV Zone Settings Adjustments
-- This module reverts relevant zone_settings rows to their pre-RoV values
-----------------------------------

-- Revert mount riding in the zones opened to chocobos and other mounts in June 2016
-- Source: https://forum.square-enix.com/ffxi/threads/50760-Jun.-7-2016-(JST)-Version-Update
SET @MISC_MOUNT = 4;

UPDATE `zone_settings`
SET `misc` = `misc` & ~@MISC_MOUNT
WHERE `name` IN (
'Beaucedine_Glacier',
'Xarcabard',
'Cape_Teriggan',
'RoMaeve',
'Qufim_Island',
'Behemoths_Dominion',
'Valley_of_Sorrows',
'Mount_Zhayolm',
'Caedarva_Mire'
);
Loading