From 69de2382a427debfaf2f3bf639914c23d8a8ba16 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 23 Jul 2023 17:41:39 +0300 Subject: [PATCH] fix typo --- files/routes/comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/comments.py b/files/routes/comments.py index df58a35c5..308d15e55 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -374,7 +374,7 @@ def comment(v:User): check_for_treasure(c, body) check_slots_command(c, v, v) - # Increment post count iff not self-reply and not a spammy comment game + # Increment post count if not self-reply and not a spammy comment game # Essentially a measure to make comment counts reflect "real" content if (posting_to_post and not rts and not c.slots_result): post_target.comment_count += 1