From 3f69f13be12a454897dcf37168e2c32342958c47 Mon Sep 17 00:00:00 2001 From: EmeraldLockdown <86802223+EmeraldLoc@users.noreply.github.com> Date: Sat, 21 Feb 2026 22:39:43 -0600 Subject: [PATCH] remove dbg --- src/pc/mods/mods.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pc/mods/mods.c b/src/pc/mods/mods.c index 9f0d662ab..9d7191abd 100644 --- a/src/pc/mods/mods.c +++ b/src/pc/mods/mods.c @@ -35,7 +35,6 @@ void mods_get_main_mod_name(char* destination, u32 maxSize) { for (u16 i = 0; i < gLocalMods.entryCount; i++) { struct Mod* mod = gLocalMods.entries[i]; if (!mod->enabled) { continue; } - LOG_CONSOLE("%s", mod->category) // always make gamemodes the main mod if ((mod->category && strcmp(mod->category, "gamemode") == 0) || (mod->incompatible && strcmp(mod->incompatible, "gamemode") == 0)) {