From fcb4fd1c541f5b8d0b98e8458aaa3ab18d59dc76 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Sat, 14 Jan 2023 23:16:38 -0500 Subject: [PATCH] Make health lower so game is harder --- next-dining.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next-dining.py b/next-dining.py index 9fa29a2..c89e7a6 100644 --- a/next-dining.py +++ b/next-dining.py @@ -3,7 +3,7 @@ import random # Initializing variables player_name = "" player_hunger = 90 -player_health = 100 +player_health = 50 player_inventory = [] player_location = "lobby" chef_angry = False