fix syntax error

pull/102/head
Aevann 2023-01-27 14:09:20 +02:00
parent 349fa17836
commit 45dfb9cb07
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def purchase_lottery_tickets(v, quantity=1):
if quantity < 1:
return False, f"Must purchase one or more lottershe tickets!"
elif (v.coins < LOTTERY_TICKET_COST * quantity):
return False, f'Lottery tickets cost {LOTTERY_TICKET_COST} coins each!"
return False, f"Lottery tickets cost {LOTTERY_TICKET_COST} coins each!"
most_recent_lottery = get_active_lottery()
if (most_recent_lottery is None):