From eec53a6670b01cb15bc95042c8f7e8209227b44e Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 7 Feb 2019 09:38:43 +0100 Subject: [PATCH] - print more meaningful info in countdecals CCMD. --- src/g_dumpinfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_dumpinfo.cpp b/src/g_dumpinfo.cpp index c07f36e601..2c9caaec30 100644 --- a/src/g_dumpinfo.cpp +++ b/src/g_dumpinfo.cpp @@ -114,7 +114,7 @@ CCMD (countdecals) while (iterator.Next()) count++; - Printf("%s: Counted %d impact decals\n", Level->MapName.GetChars(), count); + Printf("%s: Counted %d impact decals, level counter is at %d\n", Level->MapName.GetChars(), count, Level->ImpactDecalCount); } }