Compare commits
No commits in common. "0bb7a62b7589903da87f1c7d1a341214f3464b99" and "e1ca6ce440bd8bfbb7c17a606c69bdf03237cdf4" have entirely different histories.
0bb7a62b75
...
e1ca6ce440
2 changed files with 6 additions and 6 deletions
10
README.md
10
README.md
|
@ -10,12 +10,12 @@ Usage
|
||||||
python fallout.py
|
python fallout.py
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want an extra challenge, you could do hard mode, where the user must manually enter the correct input in the boot and login scripts. Accessible with the `--hard` flag.
|
or for hard mode where the user must manually enter the correct input in the
|
||||||
|
boot and login scripts
|
||||||
You can also skip the password entry entirely if you'd prefer, by adding `--skip` to the flags.
|
|
||||||
|
|
||||||
And if you'd like to preload sounds, in case of playback issues, add `--preload` to the flags.
|
|
||||||
|
|
||||||
|
```
|
||||||
|
python fallout.py hard
|
||||||
|
```
|
||||||
|
|
||||||
Passwords
|
Passwords
|
||||||
================
|
================
|
||||||
|
|
|
@ -17,7 +17,7 @@ skip = False
|
||||||
if '--skip' in sys.argv:
|
if '--skip' in sys.argv:
|
||||||
skip = True
|
skip = True
|
||||||
|
|
||||||
if '--preload' in sys.argv:
|
if '--skip-preload' not in sys.argv:
|
||||||
soundTest()
|
soundTest()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue