Few more fixes to support

This commit is contained in:
Forrest Keller 2017-10-22 04:16:27 -05:00
parent a9e71b1390
commit 3ad38c0a5f
2 changed files with 2 additions and 2 deletions

View File

@ -764,7 +764,7 @@ simulated function float GetSnarePower( optional class<DamageType> DamageType, o
}
// SUPPORT:
function bool CanRepairDoors()
simulated function bool CanRepairDoors()
{
return (Ext_PerkSupport(CurrentPerk)!=None ? Ext_PerkSupport(CurrentPerk).CanRepairDoors() : false);
}

View File

@ -15,7 +15,7 @@ simulated function bool GetUsingTactialReload( KFWeapon KFW )
return (IsWeaponOnPerk(KFW) ? Modifiers[5]<0.75 : false);
}
function bool CanRepairDoors()
simulated function bool CanRepairDoors()
{
return bCanRepairDoors;
}