From 4dc3093b22e9d5f4a1d4ecec13a2f1239970f722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Sad=C5=82ocha?= Date: Thu, 25 Jul 2024 00:52:25 +0100 Subject: [PATCH] Update a comment to match the code (#3565) --- src/commands/CmdCustom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdCustom.cpp b/src/commands/CmdCustom.cpp index bb240bf7d..b1e75a3eb 100644 --- a/src/commands/CmdCustom.cpp +++ b/src/commands/CmdCustom.cpp @@ -260,7 +260,7 @@ int CmdCustom::execute (std::string& output) std::mt19937 random_generator(device()); std::uniform_int_distribution twentyfive_percent(1, 4); - // 1 in 10 chance to display the message. + // 25% chance to display the message. if (twentyfive_percent(random_generator) == 4) { std::ostringstream notice;