Compare commits

...

2 commits

2 changed files with 6 additions and 6 deletions

View file

@ -10,12 +10,12 @@ Usage
python fallout.py
```
or for hard mode where the user must manually enter the correct input in the
boot and login scripts
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.
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
================

View file

@ -17,7 +17,7 @@ skip = False
if '--skip' in sys.argv:
skip = True
if '--skip-preload' not in sys.argv:
if '--preload' in sys.argv:
soundTest()
try: