
One World Folder
A Minecraft mod for the Fabric platform that provides access to the standard saves
folder located in the .minecraft
directory. To open the world selection screen, simply click on the OneWorldFolder icon next to the "Singleplayer" button.
Configuration Settings
The mod supports flexible behavior configuration through a configuration file that currently requires manual editing.
Configuration File Locations
The configuration file can be located in one of two places:
.minecraft/config/oneworldfolder/oneworldfolder.json
currentMinecraftInstanceFolder/config/oneworldfolder/oneworldfolder.json
If multiple configuration files exist, the one with the highest priority will be used.
Default Configuration
The default configuration looks like this:
{
"external_saves_directory": "--auto-detect",
"priority": -1,
"swap_owf_and_singleplayer_button": false,
"replace_singleplayer_button": false,
"additional_resourcepacks_dirs": []
}
This configuration automatically detects the standard saves
folder in the .minecraft
directory.
Custom Saves Folder
To use a custom saves folder, specify the desired directory in the external_saves_directory
parameter:
{
"external_saves_directory": "C:/Users/username/mycoolsaves",
"priority": -1,
"swap_owf_and_singleplayer_button": false,
"replace_singleplayer_button": false,
"additional_resourcepacks_dirs": []
}
Custom Resource Packs Folder (since version 1.0.13)
To add a custom resource packs folder, include the desired directory in the additional_resourcepacks_dirs
array:
{
"external_saves_directory": "C:/Users/username/mycoolsaves",
"priority": -1,
"swap_owf_and_singleplayer_button": false,
"replace_singleplayer_button": false,
"additional_resourcepacks_dirs": [
"C:/Users/username/mycoolresourcepacks"
]
}
In the example above, the mycoolresourcepacks
folder functions similarly to the standard resourcepacks
folder of your Minecraft instance.
Additional Configuration Options
swap_owf_and_singleplayer_button
(since version 1.0.8): The singleplayer button now opens the specified external saves folder, while the OneWorldFolder button opens the standard saves folder of the current instance.replace_singleplayer_button
(since version 1.0.8): The singleplayer button opens the specified external saves folder without adding extra buttons. When this option is enabled (set totrue
), theswap_owf_and_singleplayer_button
parameter is ignored.