Added error message about missing class to drop from RandomSpawner

This commit is contained in:
alexey.lysiuk 2015-09-19 18:29:59 +03:00
parent 49519db257
commit 96ff716046
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#include "gstrings.h"
#include "a_action.h"
#include "thingdef/thingdef.h"
#include "v_text.h"
#define MAX_RANDOMSPAWNERS_RECURSION 32 // Should be largely more than enough, honestly.
static FRandom pr_randomspawn("RandomSpawn");
@ -118,6 +119,7 @@ class ARandomSpawner : public AActor
}
else
{
Printf(TEXTCOLOR_RED "Unknown item class %s to drop from a random spawner\n", di->Name.GetChars());
Species = NAME_None;
}
}