OnRespawnInformationGiven
Usage
- No return behavior
Example Autogenerated
csharp
private void OnRespawnInformationGiven( BasePlayer instance, List`1 list )
{
Puts( "OnRespawnInformationGiven works!" );
}
Location
- BasePlayer::SendRespawnOptions()
csharp
//---
this.<SendRespawnOptions>g__CollectExternalAndSend|448_0();
return;
}
List<RespawnInformation.SpawnOptions> list = Pool.Get<List<RespawnInformation.SpawnOptions>>();
BasePlayer.GetRespawnOptionsForPlayer(list, this.userID);
Interface.CallHook("OnRespawnInformationGiven", this, list);
this.<SendRespawnOptions>g__SendToPlayer|448_1(list, false);
}