def should_use_user_override(self, override):
if override is None:
return False
if override == "":
return False
if not self.filesystem.path_exists(override):
logger.warning("config.txt specifies a Steam userdata directory that doesn't exist. Ignoring.")
return False
return False
If think the last line should return "True", not "False". Otherwise this method doesn't make sense.
In ice/cli/runner.py:
If think the last line should return "True", not "False". Otherwise this method doesn't make sense.