Skip to content
Permalink
Browse files
giggs choice fixed
  • Loading branch information
giggzze committed Oct 9, 2020
1 parent b6d0ef3 commit bfc88d27ba78a47cdc905cfa21c29dacd5417c77
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
@@ -78,7 +78,7 @@ def dansStory():
Ans6 = input("Are you going to 'risk your life to save your brother', or 'stay where you are and keep holding onto safety'")
print("")
print("After the decision...")
dansStory()
#dansStory()

# gigs starts

@@ -105,13 +105,19 @@ def main():
print(story.sept)
else:
pass
clear()
print(story.decision)
a = int(input('Please select 1 or 2...'))
if a == 1:
print(story.leave)
elif a == 2:
print(story.back)
isNumber = False
while isNumber == False:
try:
clear()
print(story.decision)
a = int(input('Please select 1 or 2...'))
if a == 1:
print(story.leave)
elif a == 2:
print(story.back)
isNumber = True
except ValueError:
pass
print(story.decision2)
print(story.con)
main()
BIN +244 Bytes (100%) __pycache__/story.cpython-38.pyc
Binary file not shown.

0 comments on commit bfc88d2

Please sign in to comment.