Found the file- so what's the proper way to modify this function to change the time before despawn?
void OnClientRespawnEvent(PlayerIdentity identity, PlayerBase player)
{
if(player)
{
if (player.IsUnconscious() || player.IsRestrained())
{
player.SetHealth("", "", 0.0);
}
}
}