-
Bug
-
Resolution: Cannot Reproduce
-
None
-
Minecraft 18w44a, 20w12a, 20w13b
-
Confirmed
-
(Unassigned)
The bug
When an entry of the options.txt file could not be read only the warning "Skipping bad option" with option name (and value) is logged. In some cases this is not enough information, instead the thrown exception should be logged as well.
How to reproduce
- Create a backup of your options.txt file
- Edit the current options.txt:
- Add an entry without separator (:):
test
- Add an entry with invalid float value:
mouseSensitivity:invalid
- Add an entry without separator (:):
- Start Minecraft
- Look at the log
It only logged "Skipping bad option" with the option name, but did not log the exception (indicating why the option is malformed)
Code analysis
20w10a, Mojang names
See net.minecraft.client.Options.load() and look for "Skipping bad option" (there are two occurences).