Remove -h from arg logic because it's not used and collides with help

This commit is contained in:
64Core 2023-03-19 16:59:14 -05:00
parent 767895bfeb
commit ac09641220

View file

@ -14,7 +14,7 @@ class Game:
def __init__(self, data):
self.args = argv[1:]
if '-h' in self.args or '--human-folders' in self.args:
if '--human-folders' in self.args:
self.humanFolders = True
else:
self.humanFolders = False