mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Don't lock out cheats in skill 4 if FURY
git-svn-id: https://svn.eduke32.com/eduke32@7815 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
36bde42d8c
commit
66032defbb
1 changed files with 2 additions and 2 deletions
|
@ -232,7 +232,7 @@ void G_DoCheats(void)
|
|||
{
|
||||
cheatNum = osdcmd_cheatsinfo_stat.cheatnum;
|
||||
|
||||
if (ud.player_skill == 4)
|
||||
if (!FURY && ud.player_skill == 4)
|
||||
{
|
||||
switch (cheatNum)
|
||||
{
|
||||
|
@ -702,7 +702,7 @@ void G_DoCheats(void)
|
|||
{
|
||||
if (pPlayer->cheat_phase == -1)
|
||||
{
|
||||
if (ud.player_skill == 4)
|
||||
if (!FURY && ud.player_skill == 4)
|
||||
{
|
||||
P_DoQuote(QUOTE_CHEATS_DISABLED, pPlayer);
|
||||
pPlayer->cheat_phase = 0;
|
||||
|
|
Loading…
Reference in a new issue