updated image to come from assests folder

renamed image to .jpg file
This commit is contained in:
Jacob Wolf
2020-08-10 12:24:30 +08:00
parent 673cde497a
commit 52696a064c
2 changed files with 5 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
# This is a Python program. You should run it by typing "chest.py"
import os
from urllib.request import urlretrieve
import threading
import datetime
@@ -36,7 +37,7 @@ guess = input(" > ")
if guess == secret:
print(" The chest snaps open, releasing several huge air bubbles.")
print(" You look into the chest and see...\n")
urlretrieve("http://chrisproctor.net/images/fork.png", "treasure.png")
os.system('cp ./../../../.assets/fork.jpg treasure.jpg')
timer1 = threading.Timer(1.0, treasure)
timer2 = threading.Timer(3.0, monster1)
timer3 = threading.Timer(5.0, monster2)