43 lines
778 B
Ucode
43 lines
778 B
Ucode
class YAS_RankRepInfo extends ReplicationInfo;
|
|
|
|
var public UniqueNetID UID;
|
|
var public Rank Rank;
|
|
|
|
replication
|
|
{
|
|
if (bNetInitial)
|
|
UID;
|
|
|
|
if (bNetDirty)
|
|
Rank;
|
|
}
|
|
|
|
public simulated function bool SafeDestroy()
|
|
{
|
|
return (bPendingDelete || bDeleteMe || Destroy());
|
|
}
|
|
|
|
public simulated event PreBeginPlay()
|
|
{
|
|
if (bPendingDelete || bDeleteMe) return;
|
|
|
|
Super.PreBeginPlay();
|
|
|
|
if (Role == ROLE_Authority || WorldInfo.NetMode == NM_StandAlone)
|
|
{
|
|
if (Controller(Owner) != None && Controller(Owner).PlayerReplicationInfo != None)
|
|
{
|
|
UID = Controller(Owner).PlayerReplicationInfo.UniqueID;
|
|
}
|
|
}
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
Role = ROLE_Authority
|
|
RemoteRole = ROLE_SimulatedProxy
|
|
|
|
bAlwaysRelevant = true
|
|
bSkipActorPropertyReplication = false
|
|
}
|