2
0
mirror of https://github.com/narkoz/hacker-scripts synced 2025-08-22 18:37:10 +00:00

Fixed Delay Typo's in fucking_coffee.py (#187)

This commit is contained in:
Meyers Tom 2020-02-23 20:15:21 +02:00 committed by GitHub
parent 6cf6770ae2
commit 9cb4a2e49d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ con.write(password + "\n")
# Make some coffee! # Make some coffee!
con.write("sys brew\n") con.write("sys brew\n")
time.sleep(64) time.sleep(24)
# love the smell! # love the smell!
con.write("sys pour\n") con.write("sys pour\n")

View File

@ -24,7 +24,7 @@ def main():
conn.write(COFFEE_MACHINE_PASS) conn.write(COFFEE_MACHINE_PASS)
conn.write('sys brew') conn.write('sys brew')
time.sleep(64) time.sleep(24)
conn.write('sys pour') conn.write('sys pour')
conn.close() conn.close()