- idclev and hxvisit are no longer considered cheats, however, they are still

invalid for net games. hxvisit was erroneously accepted for net games
  before, which it shouldn't have, since it's basically idclev for Hexen.


SVN r1881 (trunk)
This commit is contained in:
Randy Heit 2009-09-27 02:01:24 +00:00
parent 23c0f24160
commit e846e5e50f
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
September 26, 2009
- idclev and hxvisit are no longer considered cheats, however, they are still
invalid for net games. hxvisit was erroneously accepted for net games
before, which it shouldn't have, since it's basically idclev for Hexen.
September 24, 2009
- Fixed: "give health" without an amount would set your health to IDDQD health
instead of the player class's maximum.

View file

@ -253,7 +253,7 @@ CCMD (chase)
CCMD (idclev)
{
if (CheckCheatmode () || netgame)
if (netgame)
return;
if ((argv.argc() > 1) && (*(argv[1] + 2) == 0) && *(argv[1] + 1) && *argv[1])
@ -291,7 +291,7 @@ CCMD (idclev)
CCMD (hxvisit)
{
if (CheckCheatmode ())
if (netgame)
return;
if ((argv.argc() > 1) && (*(argv[1] + 2) == 0) && *(argv[1] + 1) && *argv[1])