rott/kf_sources/GamePlay/Classes/KarmaBoostDest.uc
2026-07-14 20:27:09 +07:00

16 lines
316 B
Ucode

class KarmaBoostDest extends NavigationPoint
placeable;
event int SpecialCost(Pawn Other, ReachSpec Path)
{
if ( (Vehicle(Other) == None) || !Vehicle(Other).bCanDoTrickJumps )
return 10000000;
return -0.5 * Path.Distance;
}
defaultproperties
{
bSpecialForced=true
bVehicleDestination=true
}