fix list cli
This commit is contained in:
parent
6e00ed4e42
commit
0094b86fbb
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -14,7 +14,7 @@ if __name__ == "__main__":
|
|||
|
||||
# User gave a list of cheats
|
||||
# Will bypass the interactive selection
|
||||
c_id = [int(j) for j in [i for i in argv if i.startswith(
|
||||
c_id = [int(j) - 1 for j in [i for i in argv if i.startswith(
|
||||
"--list=")][0][7:].split(",")]
|
||||
|
||||
# Load cheat class
|
||||
|
|
Reference in a new issue