File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ def sequence2():
182
182
)
183
183
print ("You decide to climb." )
184
184
input ("Press enter to continue..." )
185
- os .system (' clear' )
185
+ os .system (clear )
186
186
climb_result = climb () # Climbing system initation
187
187
if climb_result :
188
188
pass
@@ -192,7 +192,7 @@ def sequence2():
192
192
json .dump (db , f )
193
193
exit ()
194
194
print ("You have reached the top of the cliff." )
195
- os .system (' clear' )
195
+ os .system (clear )
196
196
with open ('save.json' , 'w' ) as f :
197
197
json .dump (db , f )
198
198
db ['stage' ] = 3
@@ -203,7 +203,7 @@ def sequence3():
203
203
"You reach a treasure area with a pot of gold, but the same phone booth is there."
204
204
)
205
205
print ("You are scared that the phone booth will attack you." )
206
- choice = input ("Do you wish to take the gold? Or do you run away? (get gold/run away)" ).upper ()
206
+ choice = input ("Do you wish to take the gold? Or do you run away? (get gold/run away) " ).upper ()
207
207
if choice == "GET GOLD" :
208
208
print (
209
209
"Lucky for you, the phone booth was a prop and did not do anything. You were able to retrieve the gold and win!"
You can’t perform that action at this time.
0 commit comments