mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Weapons are all automatic for Super
Signed-off-by: GreYFoXGTi <GreYFoXGTi@GMaiL.CoM>
This commit is contained in:
parent
029ea6ee9e
commit
1c491666fa
|
@ -272,7 +272,7 @@ void CCharacter::FireWeapon()
|
|||
if(CountInput(m_LatestPrevInput.m_Fire, m_LatestInput.m_Fire).m_Presses)
|
||||
WillFire = true;
|
||||
|
||||
if(FullAuto && (m_LatestInput.m_Fire&1) && m_aWeapons[m_ActiveWeapon].m_Ammo)
|
||||
if((FullAuto || m_Super) && (m_LatestInput.m_Fire&1) && m_aWeapons[m_ActiveWeapon].m_Ammo)
|
||||
WillFire = true;
|
||||
|
||||
if(!WillFire)
|
||||
|
|
Loading…
Reference in a new issue