Add another greeting by @rotzbub_

This commit is contained in:
Klaus-Uwe Mitterer 2015-03-19 20:18:59 +01:00
parent 4b3902866e
commit 1284cff229

View file

@ -29,7 +29,7 @@ while True:
recipient = status[2] recipient = status[2]
comment = status[3] comment = status[3]
try: try:
greeting = random.randint(1,8) greeting = random.randint(1,9)
if greeting == 1: if greeting == 1:
text = "Es ist soweit." text = "Es ist soweit."
elif greeting == 2: elif greeting == 2:
@ -44,6 +44,8 @@ while True:
text = "Hopp, aufstehen!" text = "Hopp, aufstehen!"
elif greeting == 7: elif greeting == 7:
text = "*BUMM*" text = "*BUMM*"
elif greeting == 8:
text = "Guten Tag. Hier spricht die Polizei!"
else: else:
text = "Guten Morgen. :P" text = "Guten Morgen. :P"