Merge pull request #335 from Jay-Sparrow/antags

Nerf rate of kill objectives
This commit is contained in:
Dahlular
2020-07-17 19:38:54 -06:00
committed by GitHub

View File

@@ -141,14 +141,14 @@
/datum/antagonist/traitor/proc/forge_single_human_objective() //Returns how many objectives are added
.=1
if(prob(50))
if(prob(35))
var/list/active_ais = active_ais()
if(active_ais.len && prob(100/GLOB.joined_player_list.len))
var/datum/objective/destroy/destroy_objective = new
destroy_objective.owner = owner
destroy_objective.find_target()
add_objective(destroy_objective)
else if(prob(30))
else if(prob(65))
var/datum/objective/maroon/maroon_objective = new
maroon_objective.owner = owner
maroon_objective.find_target()