NicePack/sources/Weapons/Playable/Heavy/Chaingun/NiceChainGun.uc
Anton Tarasenko 12d95e387e Revert weapon conversion
This patch reverts first step of global weapon conversion
that would have halted the release of the next version for too long.
2020-04-17 23:06:41 +07:00

9 lines
432 B
Ucode

class NiceChainGun extends ChainGun;
// Don't use alt fire to toggle
simulated function AltFire(float F){}
// Don't switch fire mode
exec function SwitchModes(){}
defaultproperties
{
MagCapacity=160
Weight=12.000000
FireModeClass(0)=Class'NicePack.NiceChainGunFire'
FireModeClass(1)=Class'NicePack.NiceChainGunAltFire'
PickupClass=Class'NicePack.NiceChainGunPickup'
ItemName="Patriarch's Chaingun"
}