mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Fixed: Cht_ChangeLevel cheats should not check for disabled cheats.
SVN r3319 (trunk)
This commit is contained in:
parent
7d502e7789
commit
17ba09c882
1 changed files with 4 additions and 4 deletions
|
@ -193,7 +193,7 @@ static cheatseq_t DoomCheats[] =
|
|||
{ CheatPowerup[4], 0, 0, 0, {CHT_BEHOLDA,0}, Cht_Generic },
|
||||
{ CheatPowerup[5], 0, 0, 0, {CHT_BEHOLDL,0}, Cht_Generic },
|
||||
{ CheatChoppers, 0, 0, 0, {CHT_CHAINSAW,0}, Cht_Generic },
|
||||
{ CheatClev, 0, 0, 0, {0,0}, Cht_ChangeLevel }
|
||||
{ CheatClev, 0, 1, 0, {0,0}, Cht_ChangeLevel }
|
||||
};
|
||||
|
||||
static cheatseq_t HereticCheats[] =
|
||||
|
@ -211,7 +211,7 @@ static cheatseq_t HereticCheats[] =
|
|||
{ CheatAmmo, 0, 0, 0, {CHT_TAKEWEAPS,0}, Cht_Generic },
|
||||
{ CheatGod, 0, 0, 0, {CHT_NOWUDIE,0}, Cht_Generic },
|
||||
{ CheatMassacre, 0, 0, 0, {CHT_MASSACRE,0}, Cht_Generic },
|
||||
{ CheatEngage, 0, 0, 0, {0,0}, Cht_ChangeLevel },
|
||||
{ CheatEngage, 0, 1, 0, {0,0}, Cht_ChangeLevel },
|
||||
{ CheatPowerup1[0], 0, 0, 0, {CHT_GIMMIEA,0}, Cht_Generic },
|
||||
{ CheatPowerup1[1], 0, 0, 0, {CHT_GIMMIEB,0}, Cht_Generic },
|
||||
{ CheatPowerup1[2], 0, 0, 0, {CHT_GIMMIEC,0}, Cht_Generic },
|
||||
|
@ -262,7 +262,7 @@ static cheatseq_t StrifeCheats[] =
|
|||
{ CheatPowerup2[4], 0, 0, 0, {CHT_PUMPUPP,0}, Cht_Generic },
|
||||
{ CheatPowerup2[5], 0, 0, 0, {CHT_PUMPUPS,0}, Cht_Generic },
|
||||
{ CheatPowerup2[6], 0, 0, 0, {CHT_PUMPUPT,0}, Cht_Generic },
|
||||
{ CheatRift, 0, 0, 0, {0,0}, Cht_ChangeLevel },
|
||||
{ CheatRift, 0, 1, 0, {0,0}, Cht_ChangeLevel },
|
||||
{ CheatDonnyTrump, 0, 0, 0, {CHT_DONNYTRUMP,0},Cht_Generic },
|
||||
{ CheatScoot, 0, 0, 0, {0,0}, Cht_ChangeStartSpot },
|
||||
{ CheatLego, 0, 0, 0, {CHT_LEGO,0}, Cht_Generic },
|
||||
|
@ -284,7 +284,7 @@ static cheatseq_t ChexCheats[] =
|
|||
{ CheatDigitalCafe, 0, 0, 0, {CHT_BEHOLDA,0}, Cht_Generic },
|
||||
{ CheatJoshuaStorms, 0, 0, 0, {CHT_BEHOLDL,0}, Cht_Generic },
|
||||
{ CheatJoelKoenigs, 0, 0, 0, {CHT_CHAINSAW,0}, Cht_Generic },
|
||||
{ CheatLeeSnyder, 0, 0, 0, {0,0}, Cht_ChangeLevel }
|
||||
{ CheatLeeSnyder, 0, 1, 0, {0,0}, Cht_ChangeLevel }
|
||||
};
|
||||
|
||||
static cheatseq_t SpecialCheats[] =
|
||||
|
|
Loading…
Reference in a new issue