From 1ea6a4d98702dfea5bf758aaa24464f1658f0109 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 17 Sep 2024 02:32:12 -0700 Subject: [PATCH] Update lemonade.py --- modules/lemonade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lemonade.py b/modules/lemonade.py index 4113621..aeff3aa 100644 --- a/modules/lemonade.py +++ b/modules/lemonade.py @@ -16,7 +16,7 @@ import re # regular expressions # ex. print(locale.currency(12345.67, grouping=True)) locale.setlocale(locale.LC_ALL, '') lemon_starting_cash = 30.00 -lemon_total_weeks = 2 +lemon_total_weeks = 7 lemonadeTracker = [{'nodeID': 0, 'cups': 0, 'lemons': 0, 'sugar': 0, 'cash': lemon_starting_cash, 'start': lemon_starting_cash, 'cmd': 'new', 'time': time.time()}] lemonadeCups = [{'nodeID': 0, 'cost': 2.50, 'count': 25, 'min': 0.99, 'unit': 0.00}]