- removed redundant null entry in 'give' types.

This commit is contained in:
Christoph Oelckers 2020-09-22 08:40:33 +02:00
parent 9859571ded
commit b06fe35c56

View file

@ -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 <all|health|weapons|ammo|armor|keys|inventory>: gives requested item\n");