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:
KevinClifford 2015-02-02 07:20:36 -05:00
parent c2a358be55
commit a9de384ad1

View file

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