diff --git a/monkestation/code/modules/antagonists/evil_clone/evil_clone_objective.dm b/monkestation/code/modules/antagonists/evil_clone/evil_clone_objective.dm index 88aa241e4453..1ce177042ce4 100644 --- a/monkestation/code/modules/antagonists/evil_clone/evil_clone_objective.dm +++ b/monkestation/code/modules/antagonists/evil_clone/evil_clone_objective.dm @@ -14,9 +14,9 @@ name = "minion" explanation_text = "Find the most evil being you can, and become their minion." -/datum/objective/evil_clone/dud // Relies on more destructive objectives, to create conflict from crew hating evil clones because they MIGHT have a more evil objective. - name = "peaceful clone" - explanation_text = "You find it really mean that some people don't like you because of your red eyes." +///datum/objective/evil_clone/dud // Relies on more destructive objectives, to create conflict from crew hating evil clones because they MIGHT have a more evil objective. // +// name = "peaceful clone" +// explanation_text = "You find it really mean that some people don't like you because of your red eyes." //Disabled because it doesn't cause any conflict in my experience. Security is not allowed to validhunt them. /datum/objective/evil_clone/tide name = "tider" diff --git a/monkestation/code/modules/antagonists/evil_clone/evil_event.dm b/monkestation/code/modules/antagonists/evil_clone/evil_event.dm index 10d5b481d9cc..ac7f59d151f8 100644 --- a/monkestation/code/modules/antagonists/evil_clone/evil_event.dm +++ b/monkestation/code/modules/antagonists/evil_clone/evil_event.dm @@ -2,7 +2,7 @@ name = "Experimental Cloner Corruption" typepath = /datum/round_event/cloner_corruption max_occurrences = 1 - weight = 3 + weight = 5 category = EVENT_CATEGORY_ENTITIES //Kinda, evil clones ARE entities. track = EVENT_TRACK_MODERATE tags = list(TAG_COMBAT) // Clones will likely start a fight, but will usually not cause wanton destruction. @@ -10,9 +10,10 @@ /datum/round_event/cloner_corruption/start() var/found = FALSE + var/objective = pick(subtypesof(/datum/objective/evil_clone)) for(var/obj/machinery/clonepod/experimental/cloner in GLOB.machines) if(!cloner.locked) - cloner.evil_objective = pick(subtypesof(/datum/objective/evil_clone)) + cloner.evil_objective = objective cloner.RefreshParts() found = TRUE if(!found) // Refund if no experimental cloners are found.