- added 'kill baddies' cheat - does the same thing as 'kill monsters' only it ignores friendly monsters

This commit is contained in:
Rachael Alexanderson 2017-07-19 15:02:46 -04:00
commit 5918167fb3
5 changed files with 16 additions and 5 deletions

View file

@ -1966,6 +1966,15 @@ CCMD (kill)
Net_WriteByte (DEM_GENERICCHEAT);
Net_WriteByte (CHT_MASSACRE);
}
else if (!stricmp (argv[1], "baddies"))
{
// Kill all the unfriendly monsters
if (CheckCheatmode ())
return;
Net_WriteByte (DEM_GENERICCHEAT);
Net_WriteByte (CHT_MASSACRE2);
}
else
{
Net_WriteByte (DEM_KILLCLASSCHEAT);