Fix missing function access modifiers
This commit is contained in:
parent
2c887bf513
commit
2b75722de5
1 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ static function bool CheckReplacement(Actor other, out byte isSuperRelevant)
|
|||
return true;
|
||||
}
|
||||
|
||||
static function CheckAbusableWeapon(KFWeapon newWeapon)
|
||||
private static function CheckAbusableWeapon(KFWeapon newWeapon)
|
||||
{
|
||||
local FixAmmoSelling ammoSellingFix;
|
||||
if (newWeapon == none) return;
|
||||
|
|
@ -37,7 +37,7 @@ static function CheckAbusableWeapon(KFWeapon newWeapon)
|
|||
ammoSellingFix.FixWeapon(newWeapon);
|
||||
}
|
||||
|
||||
static function CheckAmmoPickup(KFAmmoPickup newAmmoPickup)
|
||||
private static final function CheckAmmoPickup(KFAmmoPickup newAmmoPickup)
|
||||
{
|
||||
if (newAmmoPickup == none) return;
|
||||
class'AmmoPickupStalker'.static.StalkAmmoPickup(newAmmoPickup);
|
||||
|
|
|
|||
Reference in a new issue