From bff6c6234ca1614116b326d3504f48a30b596dae Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Fri, 27 Jul 2018 22:21:13 -0400 Subject: [PATCH] Fix basenumlaps prints --- src/d_netcmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 6d4aa65a5..167457d15 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -5194,9 +5194,9 @@ static void BaseNumLaps_OnChange(void) if (gamestate == GS_LEVEL) { if (cv_basenumlaps.value) - CONS_Printf(M_GetText("Number of laps will be changed to map defaults next round.\n")); - else CONS_Printf(M_GetText("Number of laps will be changed to %d next round.\n"), cv_basenumlaps.value); + else + CONS_Printf(M_GetText("Number of laps will be changed to map defaults next round.\n")); } }