From c8e567ca694de9fb6dc0b1b2479f15e7bb76aeef Mon Sep 17 00:00:00 2001 From: ZKWolf Date: Mon, 26 Feb 2024 02:07:00 +0100 Subject: [PATCH] Changed Alpha Currency Balance for new users --- src/logic/mongodb_handler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/logic/mongodb_handler.py b/src/logic/mongodb_handler.py index 0c1a7c4..45dc965 100644 --- a/src/logic/mongodb_handler.py +++ b/src/logic/mongodb_handler.py @@ -10,9 +10,9 @@ class Mongo: self.dyn_collection = "" self.default_user_schema = { 'eula': False, - 'currency_blood_cells': 0, - 'currency_iron': 0, - 'currency_ink_cells': 0, + 'currency_blood_cells': 1000, + 'currency_iron': 1000, + 'currency_ink_cells': 1000, 'inventory': [], 'is_banned': False, 'ban_reason': "NoReasonGiven",