Closed poohcom1 closed 1 year ago
The _get_project_setting function in config.gd has a null check that checks if a value is truthy as opposed to non-null, which results in boolean configs such as _LOOP_ENABLED always being true.
_get_project_setting
config.gd
_LOOP_ENABLED
oh, nice catch! Thank you.
The
_get_project_setting
function inconfig.gd
has a null check that checks if a value is truthy as opposed to non-null, which results in boolean configs such as_LOOP_ENABLED
always being true.