NicePack/sources/Weapons/Playable/Incendiary/Protecta/NiceProtecta.uc
2022-01-21 14:25:59 +04:00

20 lines
368 B
Ucode

class NiceProtecta extends Protecta;
// Use alt fire to switch fire modes
simulated function AltFire(float F)
{
if(ReadyToFire(0))
{
DoToggle();
}
}
exec function SwitchModes()
{
DoToggle();
}
defaultproperties
{
FireModeClass(0)=class'NiceProtectaFire'
PickupClass=class'NiceProtectaPickup'
ItemName="Flare Shotgun 'Protecta' NW"
}