mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 06:53:40 +00:00
- 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
|
@ -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.
|
||||
|
|
|
@ -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…
Reference in a new issue