mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed bad level number for weapon removal in RRRA.
This commit is contained in:
parent
fa2bcf563a
commit
d5db898236
1 changed files with 1 additions and 1 deletions
|
@ -845,7 +845,7 @@ static int LoadTheMap(MapRecord *mi, struct player_struct *p, int gamemode)
|
||||||
if (isRR()) prelevel_r(gamemode);
|
if (isRR()) prelevel_r(gamemode);
|
||||||
else prelevel_d(gamemode);
|
else prelevel_d(gamemode);
|
||||||
|
|
||||||
if (isRRRA() && mi->levelNumber == levelnum(2, 0))
|
if (isRRRA() && mi->levelNumber == levelnum(0, 2))
|
||||||
{
|
{
|
||||||
for (int i = PISTOL_WEAPON; i < MAX_WEAPONS; i++)
|
for (int i = PISTOL_WEAPON; i < MAX_WEAPONS; i++)
|
||||||
ps[0].ammo_amount[i] = 0;
|
ps[0].ammo_amount[i] = 0;
|
||||||
|
|
Loading…
Reference in a new issue