Left in a removed param...

This commit is contained in:
egut125
2021-12-31 00:02:05 -05:00
parent 430b6f5394
commit d4de72b285

View File

@@ -269,7 +269,7 @@ class UiManager():
exclude_props = self._config.items[x.name].exclude
if not (include_props or exclude_props):
Logger.debug(f"{x.name}: Stashing")
self._game_stats.log_item_keep(x.name, self._config.items[x.name].pickit_type == 2, "Stashed")
self._game_stats.log_item_keep(x.name, self._config.items[x.name].pickit_type == 2)
filtered_list.append(x)
continue
include = True
@@ -319,7 +319,7 @@ class UiManager():
break
if include and not exclude:
Logger.debug(f"{x.name}: Stashing. Required {include_logic_type}({include_props})={include}, exclude {exclude_logic_type}({exclude_props})={exclude}")
self._game_stats.log_item_keep(x.name, self._config.items[x.name].pickit_type == 2, "Stashed")
self._game_stats.log_item_keep(x.name, self._config.items[x.name].pickit_type == 2)
filtered_list.append(x)
return len(filtered_list) > 0