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

22 lines
498 B
Ucode

//=============================================================================
// KF Gameplay
//=============================================================================
class KFGameplay extends Mutator;
function ModifyPlayer(Pawn Other)
{
local xPawn x;
x = xPawn(Other);
// KFTODO: maybe replace this?
//if(x.health < x.HealthMax/2)
// Spawn(class'XEffects.RedeemerExplosion',,, Location);
Super.ModifyPlayer(Other);
}
defaultproperties
{
}