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

25 lines
353 B
Ucode

class ClientMover Extends Mover;
function PostBeginPlay()
{
Super.PostBeginPlay();
if ( Level.NetMode == NM_DedicatedServer )
{
GotoState('ServerIdle');
SetTimer(0,false);
SetPhysics(PHYS_None);
}
}
State ServerIdle
{
}
defaultproperties
{
bAlwaysRelevant=false
RemoteRole=ROLE_None
bClientAuthoritative=true
}