Clouser settings locker
This mod allows to lock precise settings to prevent breaking Clouser's Minecraft maps.
Clouser settings locker
This mod allows to lock precise settings to prevent breaking Clouser's Minecraft maps.
It generates a file in the main Minecraft folder, named settingsLock.txt. Editing this file allows to enable and disable options. You don't need to restart the game, the changes are loaded in runtime and you just have to reopen the menu to apply the modifications.
Below is an example line from the file:
`options.fov = true // FOV`
Let's break this line down, shall we?
| `options.fov` | `=` | `true` | `//` | `FOV` | |------------------------------------------|-----|---------------------------------------------------------------------------------|------|--------------------------------------------------------------------| | A code for the targeted option or button | | If this value is `true`, the option is enabled. If it's `false`, it's disabled. | | The in-game english name of the option. Here, it's the FOV slider. |
More information on GitHub.