Compatibility
Minecraft: Java Edition
1.21.x
1.20.4–1.20.6
1.20.1–1.20.2
Platforms
Fabric
Supported environments
90% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed Apache-2.0
Published last year
Updated last week
One World Folder
A minecraft fabric mod, that allows minecraft to access the default saves
folder located in .minecraft
. To open the world select screen click on the OneWorldFolder icon next to the Singleplayer button.
Default Config
By default one world folder will automatically detect the default saves
folder located in .minecraft
. This can be changed in the config. The generated default config looks like this:
{
"external_saves_directory": "--auto-detect",
"priority": -1,
"swap_owf_and_singleplayer_button": false,
"replace_singleplayer_button": false
}
Config Location
There are two possible locations for this config file:
.minecraft/config/oneworldfolder/oneworldfolder.json
currentMinecraftInstanceFolder/config/oneworldfolder/oneworldfolder.json
The config with the highest priority will be used.
Custom external saves
folder
To use a custom saves folder set external_saves_directory
to your desired directory:
{
"external_saves_directory": "C:/Users/username/mycoolsaves",
"priority": -1,
"swap_owf_and_singleplayer_button": false,
"replace_singleplayer_button": false
}
Other Config Options
swap_owf_and_singleplayer_button
(since v. 1.0.8): The single player button now opens your specified externalsaves
folder. The OneWorldFolder button now opens the normalsaves
folder of the current instance.replace_singleplayer_button
(since v. 1.0.8): The single player button now opens your specified externalsaves
folder. No extra buttons are added. If this is enabled (set totrue
), theswap_owf_and_singleplayer_button
option will be ignored.