- Update to ZDoom r763

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@31 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
Christoph Oelckers 2008-02-22 09:00:45 +00:00
parent 4ff0621745
commit 30c4fbf193
9 changed files with 72 additions and 32 deletions

View file

@ -1395,6 +1395,9 @@ CCMD (kill)
{
if (argv.argc() > 1)
{
if (CheckCheatmode ())
return;
if (!stricmp (argv[1], "monsters"))
{
// Kill all the monsters
@ -1406,8 +1409,8 @@ CCMD (kill)
}
else
{
Printf("cannot kill '%s'\n", argv[1]);
return;
Net_WriteByte (DEM_KILLCLASSCHEAT);
Net_WriteString (argv[1]);
}
}
else