- 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:
parent
23c0f24160
commit
e846e5e50f
2 changed files with 7 additions and 2 deletions
|
|
@ -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])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue