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:
hendricks266 2019-07-22 03:24:35 +00:00 committed by Christoph Oelckers
parent 36bde42d8c
commit 66032defbb

View file

@ -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;