diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-05-24 15:41:29 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-05-24 15:41:29 +0200 |
commit | 14755a4ff4668e2cf2fa580797321141770e3b36 (patch) | |
tree | b5001322abefa241048aaab22498c357f1ed3806 /src/weapons/WeaponInfo.h | |
parent | CVehicle fixes (diff) | |
download | re3-14755a4ff4668e2cf2fa580797321141770e3b36.tar re3-14755a4ff4668e2cf2fa580797321141770e3b36.tar.gz re3-14755a4ff4668e2cf2fa580797321141770e3b36.tar.bz2 re3-14755a4ff4668e2cf2fa580797321141770e3b36.tar.lz re3-14755a4ff4668e2cf2fa580797321141770e3b36.tar.xz re3-14755a4ff4668e2cf2fa580797321141770e3b36.tar.zst re3-14755a4ff4668e2cf2fa580797321141770e3b36.zip |
Diffstat (limited to 'src/weapons/WeaponInfo.h')
-rw-r--r-- | src/weapons/WeaponInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/weapons/WeaponInfo.h b/src/weapons/WeaponInfo.h index b5882082..c89dd482 100644 --- a/src/weapons/WeaponInfo.h +++ b/src/weapons/WeaponInfo.h @@ -5,13 +5,13 @@ class CWeaponInfo { // static CWeaponInfo(&ms_apWeaponInfos)[14]; - static CWeaponInfo ms_apWeaponInfos[14]; + static CWeaponInfo ms_apWeaponInfos[WEAPONTYPE_LAST_WEAPONTYPE]; public: eWeaponFire m_eWeaponFire; float m_fRange; uint32 m_nFiringRate; uint32 m_nReload; - uint32 m_nAmountofAmmunition; + int32 m_nAmountofAmmunition; uint32 m_nDamage; float m_fSpeed; float m_fRadius; |