From 0f8ee189b1bf20239507d4cd7cd2f7a7e8286c00 Mon Sep 17 00:00:00 2001 From: Ludwig Date: Wed, 26 Feb 2025 08:50:31 +0100 Subject: [PATCH] fix unintended changes --- src/mod_congratsonlevel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod_congratsonlevel.cpp b/src/mod_congratsonlevel.cpp index 0385ef9..54b1148 100644 --- a/src/mod_congratsonlevel.cpp +++ b/src/mod_congratsonlevel.cpp @@ -253,7 +253,7 @@ public: } // If level is defined, they hit a reward level. - if (!level) + if (!level && col.CongratsPerLevelEnable) { // Issue a server notification for the player on level up. std::ostringstream ss;