fix🍋hs

This commit is contained in:
SpudGunMan
2024-09-28 00:45:57 -07:00
parent 3f16158e27
commit aa05c62d94
2 changed files with 4 additions and 7 deletions
+1 -3
View File
@@ -38,15 +38,13 @@ def get_sales_amount(potential, unit, price):
return math.floor(potential * (unit / (price ** 1.5)))
def getHighScoreLemon():
global high_score
high_score = {"userID": 0, "cash": 0, "success": 0}
# Load high score table
try:
with open('lemonade_hs.pkl', 'rb') as file:
high_score = pickle.load(file)
except FileNotFoundError:
logger.debug("System: Lemonade: No high score table found")
# high score pickle file is a touple of the nodeID and the high score
high_score = ({"userID": 0, "cash": 0, "success": 0})
# write a new high score file if one is not found
with open('lemonade_hs.pkl', 'wb') as file:
pickle.dump(high_score, file)