If I for example load this file and attempts to get both values, I succeed without a problem:
[Config]
hostname="My awesome Server!"
maxclients=32
However, if someone edit the file and somehow screw up like this:
[Config]
hostname="My awesome Server!"
somevar=stringwithoutquotationmarks
maxclients=32
It wont be able to get any data after somevar, even when using value and key.
How can I "skip" the errors, ignoring them, so that I may get out other values below the "error"?
All help is much appreciated :)
Posted this as an issue as well, by recommendation of Calinou ~
https://github.com/godotengine/godot/issues/3832