Removes the skill tree "Ravenger" at a 50/50 chance when they spawn.
hook.Add("PlayerInitialSpawn", "wOS.ALCS.Whitelist.RemoveRavenger", function(ply) local chance = math.random(1,2) if chance == 1 then ply:WOS_RemoveSkillTree("Ravenger") endend)