mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-06 18:12:14 +00:00
Fix for SLAM and AR2Altfire (hl2mp_gamerules.cpp)
Simple fix for the isues with the ammo for the SLAM and AR2Altfire This will also allow many more ammo-types to be added by someone, who is using this base. This is an edit to hl2mp_gamerules.cpp Something I didn't include (so I wouldn't have to make multiple pull requests) is that you will also have to edit MAX_AMMO_TYPES and MAX_AMMO_SLOTS in shareddefs.h to be 128 instead of 32.
This commit is contained in:
parent
c2a358be55
commit
a9de384ad1
1 changed files with 1 additions and 1 deletions
|
@ -1148,8 +1148,8 @@ CAmmoDef *GetAmmoDef()
|
|||
def.AddAmmoType("RPG_Round", DMG_BURN, TRACER_NONE, 0, 0, 3, 0, 0 );
|
||||
def.AddAmmoType("SMG1_Grenade", DMG_BURN, TRACER_NONE, 0, 0, 3, 0, 0 );
|
||||
def.AddAmmoType("Grenade", DMG_BURN, TRACER_NONE, 0, 0, 5, 0, 0 );
|
||||
def.AddAmmoType("slam", DMG_BURN, TRACER_NONE, 0, 0, 5, 0, 0 );
|
||||
#endif //SecobMod__Enable_Fixed_Multiplayer_AI
|
||||
def.AddAmmoType("slam", DMG_BURN, TRACER_NONE, 0, 0, 5, 0, 0 ); //Always include SLAM ammo
|
||||
}
|
||||
|
||||
return &def;
|
||||
|
|
Loading…
Reference in a new issue