#if SERVER
global const REVIVE_ENABLED = true // currently not used anywhere
global function ReviveEnabled

bool function ReviveEnabled()
{
	return GetCurrentPlaylistVarInt( "player_revive_enabled", 0 ) == 1
}
#elseif true
global const REVIVE_ENABLED = false // currently not used anywhere
global function ReviveEnabled

bool function ReviveEnabled()
{
	// client version of this doesn't work lol
	return false
	//return GetCurrentPlaylistVarInt( "player_revive_enabled", 0 ) == 1
}
#endif