add space to the stats

Adding a bit white space makes the stats more readable.
This commit is contained in:
Andreas Zweili 2016-11-13 12:22:41 +01:00
parent 3c6cefd6f9
commit 6b2504ae81
2 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def pet_stats():
print("Status: " + pet_variables.pet_status)
print("Age: " + str(pet_variables.pet_age))
print("Health: " + pet_variables.pet_health * "")
print("Hunger: " + pet_variables.pet_hunger * "*")
print("Hunger: " + pet_variables.pet_hunger * "* ")
print("Happines: " + pet_variables.pet_happiness * "")

View File

@ -1,3 +1,4 @@
#!/bin/bash
source pygame/bin/activate
./tamagotchi.py
exit 0