[41] increase number of template checks

This commit is contained in:
meisnate12 2022-09-21 17:16:53 -04:00
parent d683dd172f
commit 5cb384c6d0
2 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
1.17.3-develop40
1.17.3-develop41

View file

@ -318,8 +318,8 @@ class DataFile:
return str(og_txt).replace(f"<<{var}>>", str(actual_value))
else:
return og_txt
for i_check in range(6):
if i_check == 2 or i_check == 4:
for i_check in range(8):
if i_check in [2, 4, 6]:
for dm, dd in default.items():
_data = scan_text(_data, dm, dd)
else: