Hello Klei Team,
I am experiencing a critical issue with the automatic mod download and update feature on my dedicated servers. This feature, managed via `dedicated_server_mods_setup.lua`, has been working perfectly until today.
The problem is that any mod that received an update on or after July 12, 2025, fails to download or update automatically. The server log consistently shows the following error for multiple, different mods:
Example 1:
[00:01:10]: [Workshop] OnDownloadPublishedFile [2] 3014738585
[00:01:10]: [Workshop] ODPF failed entirely: 2
Example 2:
[00:01:12]: [Workshop] OnDownloadPublishedFile [2] 3519585498
[00:01:12]: [Workshop] ODPF failed entirely: 2
My `dedicated_server_mods_setup.lua` is configured like this, using the standard `ServerModSetup` function:
ServerModSetup("1909182187")
ServerModSetup("3014738585")
ServerModSetup("2572244884")
ServerModSetup("2847908822")
ServerModSetup("3519585498")
ServerModSetup("378160973")
ServerModSetup("2886753796")
To troubleshoot, I have confirmed the following:
- The issue occurs on both Windows and Linux dedicated server environments (both 32-bit and 64-bit).
- Mods that were last updated *before* July 12 download and work correctly.
- The issue persists even on a brand new server instance with no prior save data, ruling out a problem with my existing worlds.
This strongly suggests a recent change, possibly related to the Steam Workshop API or the game's interaction with it, that specifically affects mods published or updated on this date.
1. Set up a new Don't Starve Together dedicated server on either Windows or Linux.
2. Create a `dedicated_server_mods_setup.lua` file and add the following content to it. This list contains mods updated before July 12 and mods updated on/after July 12 (e.g., 3014738585, 3519585498).
ServerModSetup("1909182187")
ServerModSetup("3014738585")
ServerModSetup("2572244884")
ServerModSetup("2847908822")
ServerModSetup("3519585498")
ServerModSetup("378160973")
ServerModSetup("2886753796")eam Workshop.
4. Start the dedicated server and monitor the console output or the server log file.
Expected Result:
The server should successfully download and install all mods listed in the `dedicated_server_mods_setup.lua` file.
Actual Result:
The server successfully downloads the mods that were last updated before July 12. However, it fails to download the mods updated on or after July 12 (like 3014738585 and 3519585498), and the log shows the "[Workshop] ODPF failed entirely: 2" error for each of them.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now