From cec5ac01a0306ccb75c67fa9105d6508bd1c16aa Mon Sep 17 00:00:00 2001 From: Rene Arumetsa Date: Mon, 17 Aug 2026 19:29:15 +0300 Subject: [PATCH] Fix give coins, now actually gives rewards --- core/economy/quests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/economy/quests.py b/core/economy/quests.py index 9c02252..5dcd3b0 100644 --- a/core/economy/quests.py +++ b/core/economy/quests.py @@ -32,7 +32,7 @@ QUESTS_DAILY: dict[str, QuestDef] = { "fish2": {"stat": "total_fish_caught", "goal": 2, "coins": 150, "exp": 20}, "crime1": {"stat": "crimes_succeeded", "goal": 1, "coins": 200, "exp": 25}, "earn1000": {"stat": "lifetime_earned", "goal": 1000, "coins": 150, "exp": 20}, - "give200": {"stat": "total_given", "goal": 200, "coins": 100, "exp": 15}, + "give200": {"stat": "total_given", "goal": 200, "coins": 250, "exp": 20}, } QUESTS_WEEKLY: dict[str, QuestDef] = {