# Why Does WorldOption.sav Override PalWorldSettings.ini?
In Palworld, world rules can be defined in two distinct places:
- PalWorldSettings.ini: The human-readable text configuration file located under
Pal/Saved/Config/WindowsServer/(orLinuxServer/). - WorldOption.sav: The binary GVAS container generated by local singleplayer and co-op worlds that stores world settings directly inside the world save folder.
When a dedicated server launches, Unreal Engine queries the save directory. If WorldOption.sav exists in the world directory, the server engine treats it as the absolute authority, silently ignoring every setting in PalWorldSettings.ini!
# Which Settings Are Blocked?
XP gains remain hardlocked to 1.0x regardless of INI changes.
Inactive guild timeout and base wipe intervals are ignored.
Item drop rules (ItemAndEquipment / None) fail to update.
Egg incubation speed settings are completely bypassed.
Step 1: Stop the Dedicated Server
Ensure the PalServer process or Docker container is stopped before modifying files to prevent file locking and memory overwrite issues.
docker stop palworld-server # or: sudo systemctl stop palserver
Step 2: Navigate to the World Save Directory
Open your server files and navigate along this path:
PalServer/Pal/Saved/SaveGames/0/<WorldID>/
Step 3: Delete or Rename WorldOption.sav
Rename WorldOption.sav to WorldOption.sav.bak.
Level.sav, LevelMeta.sav, or any file in the Players/ folder! Only WorldOption.sav needs to be removed.
Step 4: Restart the Server
Start your dedicated server. With WorldOption.sav out of the way, Palworld will now read and enforce all custom multipliers directly from PalWorldSettings.ini!
? Frequently Asked Questions
Why are my Palworld server settings not applying?
On dedicated servers, if WorldOption.sav exists in the world save folder (which commonly happens when importing a singleplayer or co-op save), Palworld prioritizes WorldOption.sav over PalWorldSettings.ini. Any changes you make to XP rate, egg timer, or death penalties in the INI file are completely ignored.
Is it safe to delete WorldOption.sav on a dedicated server?
Yes. Deleting WorldOption.sav is completely safe for dedicated servers. It only forces the server to read settings from PalWorldSettings.ini. Players might need to choose their respawn point upon logging in once, but no player levels, Pals, or base structures are affected.