mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-27 04:00:42 +00:00
- Exhumed: Make FillWeapons()
fill the ammo count to the maximum allowed by the game for all weapons (300).
This commit is contained in:
parent
7607190dad
commit
f9b75b1aa9
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ void FillWeapons(short nPlayer)
|
|||
for (int i = 0; i < kMaxWeapons; i++)
|
||||
{
|
||||
if (WeaponInfo[i].d) {
|
||||
PlayerList[nPlayer].nAmmo[i] = 99;
|
||||
PlayerList[nPlayer].nAmmo[i] = 300;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue