[5] fix overwriting external vars

This commit is contained in:
meisnate12 2023-04-14 00:16:35 -04:00
parent 9ebf2e178b
commit 896c9b9e74
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
1.19.0-develop4
1.19.0-develop5

View file

@ -312,7 +312,7 @@ class DataFile:
added_vars.pop(input_key)
elif overwrite_call:
variables[input_key] = input_value
else:
elif input_key not in added_vars:
added_vars[input_key] = input_value
for k, v in added_vars.items():
if k not in variables: