From 0d7ea00d4210d101cf34f4ae5e4ab81fecb90fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20D=C3=B6rflinger?= Date: Tue, 16 Dec 2025 11:44:18 +0100 Subject: [PATCH] Make use of actual method call --- ChristmasEvent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChristmasEvent.py b/ChristmasEvent.py index f487d46..64d37b9 100755 --- a/ChristmasEvent.py +++ b/ChristmasEvent.py @@ -386,7 +386,7 @@ class ChristmasBot: print("New user, add comment") self.db.add_commented_user(target.lower()) submission = self.reddit.submission(id=config.master_post_id) - submission.add_comment(config.comment_base_text.format(username=target.lower())) + submission.reply(config.comment_base_text.format(username=target.lower())) if state == "CONFIRM_REPLACE": message.reply(f"✅ Your wish for u/{target.lower()} has been **updated**! 🎄")