From b06fe35c56797bcbd1c80bc382c1e0ee65da3fcf Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 22 Sep 2020 08:40:33 +0200 Subject: [PATCH] - removed redundant null entry in 'give' types. --- source/core/cheats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/cheats.cpp b/source/core/cheats.cpp index 33b8c2f9a..cb4fb0d59 100644 --- a/source/core/cheats.cpp +++ b/source/core/cheats.cpp @@ -158,7 +158,7 @@ CCMD(noclip) CCMD(give) { - static const char* type[] = { "ALL","AMMO","ARMOR","HEALTH","INVENTORY","ITEMS","KEYS","WEAPONS",nullptr }; + static const char* type[] = { "ALL","AMMO","ARMOR","HEALTH","INVENTORY","ITEMS","KEYS","WEAPONS" }; if (argv.argc() < 2) { Printf("give : gives requested item\n");