From 046dbd3dcfe7a61f7764111e5c4aa9d5c3771002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20D=C3=B6rflinger?= Date: Fri, 12 Dec 2025 13:42:50 +0100 Subject: [PATCH] Fixed the missing "Gifts" keyword --- ChristmasEvent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChristmasEvent.py b/ChristmasEvent.py index e9c790a..b7fcd01 100755 --- a/ChristmasEvent.py +++ b/ChristmasEvent.py @@ -194,7 +194,7 @@ class ChristmasBot: elif count == 1: return "🎄 (1 Gift)" elif count <= 5: - return "🎄" * count + f" ({count})" + return "🎄" * count + f" ({count} Gifts)" else: return f"🌟🌟🌟 ({count} Gifts!)"