fix some small typos

This commit is contained in:
Andreas Zweili 2015-07-12 21:51:40 +02:00
parent aa64579cbe
commit dd97541335
4 changed files with 3 additions and 3 deletions

View File

@ -165,9 +165,9 @@ def poking():
mixer.music.play() mixer.music.play()
time.sleep(5) time.sleep(5)
else: else:
print("You annoyed " + pet_variables.pet_name "It got angry at you.") print("You annoyed " + pet_variables.pet_name + "." + " It got angry at you.")
decrease_happiness() decrease_happiness()
mixer.init() mixer.init()
mixer.music.load('angry.mp3') mixer.music.load('angry.mp3')
mixer.music.play() mixer.music.play()
time.sleep(5) time.sleep(3)

View File

@ -31,7 +31,7 @@ while pet_functions.is_alive():
print("What would you like to do?") print("What would you like to do?")
# Start the chosen activity and go back to the activity selector. # Start the chosen activity and go back to the activity selector.
print("1: Feeding, 2: Playing, 3: Stroke Pet,") print("1: Feeding, 2: Playing, 3: Stroke Pet,")
print("4: Stroking, 5: Show Stats,") print("4: Poking, 5: Show Stats,")
try: try:
chosen_activity = int(input("Choose the desired activity:")) chosen_activity = int(input("Choose the desired activity:"))
if chosen_activity == 1: if chosen_activity == 1: