Ice icon indicating copy to clipboard operation
Ice copied to clipboard

Error in function should_use_user_override

Open Cybso opened this issue 7 years ago • 0 comments

In ice/cli/runner.py:

  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.

Cybso avatar Jun 25 '17 19:06 Cybso