diff --git a/code/modules/antagonists/spy/spy.dm b/code/modules/antagonists/spy/spy.dm index e5fceec73c1..e39740bc1aa 100644 --- a/code/modules/antagonists/spy/spy.dm +++ b/code/modules/antagonists/spy/spy.dm @@ -160,7 +160,6 @@ cage_the_jailbird.no_failure = TRUE objectives += cage_the_jailbird - /* // BUBBER EDIT BEGIN if(prob(10)) var/datum/objective/martyr/leave_no_trace = new() leave_no_trace.owner = owner @@ -170,7 +169,6 @@ var/datum/objective/hijack/steal_the_shuttle = new() steal_the_shuttle.owner = owner objectives += steal_the_shuttle - */ // BUBBER EDIT END else if(prob(10)) //10% chance on 87.3% chance var/datum/objective/exile/hit_the_bricks = new() diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm index ccbb27cb634..aafe5b94abd 100644 --- a/code/modules/antagonists/traitor/datum_traitor.dm +++ b/code/modules/antagonists/traitor/datum_traitor.dm @@ -127,11 +127,9 @@ /datum/antagonist/traitor/proc/forge_traitor_objectives() var/objective_count = 0 - /* // BUBBER EDIT BEGIN if((GLOB.joined_player_list.len >= HIJACK_MIN_PLAYERS) && prob(HIJACK_PROB)) is_hijacker = TRUE objective_count++ - */ // BUBBER EDIT END var/objective_limit = CONFIG_GET(number/traitor_objectives_amount) @@ -146,13 +144,11 @@ * Forges the endgame objective and adds it to this datum's objective list. */ /datum/antagonist/traitor/proc/forge_ending_objective() - /* // BUBBER EDIT BEGIN if(is_hijacker) ending_objective = new /datum/objective/hijack ending_objective.owner = owner return - var/martyr_compatibility = TRUE for(var/datum/objective/traitor_objective in objectives) @@ -165,7 +161,6 @@ ending_objective.owner = owner objectives += ending_objective return - */ // BUBBER EDIT END ending_objective = new /datum/objective/escape ending_objective.owner = owner