Fix Spread not working on shotguns
This commit is contained in:
parent
d36068787a
commit
b550ba56e7
@ -894,6 +894,11 @@ simulated function float GetPenetrationModifier(byte Level, class<KFDamageType>
|
|||||||
return (Ext_PerkSupport(CurrentPerk)!=None ? Ext_PerkSupport(CurrentPerk).GetPenetrationModifier(Level, DamageType, bForce) : 0.f);
|
return (Ext_PerkSupport(CurrentPerk)!=None ? Ext_PerkSupport(CurrentPerk).GetPenetrationModifier(Level, DamageType, bForce) : 0.f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
simulated function float GetTightChokeModifier()
|
||||||
|
{
|
||||||
|
return (CurrentPerk!=None ? CurrentPerk.GetTightChokeModifier() : 1.f);
|
||||||
|
}
|
||||||
|
|
||||||
// Other
|
// Other
|
||||||
function ApplySkillsToPawn()
|
function ApplySkillsToPawn()
|
||||||
{
|
{
|
||||||
|
@ -1475,6 +1475,11 @@ simulated function float GetZedTimeExtensions(byte Level)
|
|||||||
return 1.f;
|
return 1.f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
simulated function float GetTightChokeModifier()
|
||||||
|
{
|
||||||
|
return Modifiers[3];
|
||||||
|
}
|
||||||
|
|
||||||
defaultproperties
|
defaultproperties
|
||||||
{
|
{
|
||||||
CurrentConfigVer=14
|
CurrentConfigVer=14
|
||||||
|
Loading…
Reference in New Issue
Block a user