Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions code/modules/antagonists/brother/brother.dm
Original file line number Diff line number Diff line change
Expand Up @@ -138,17 +138,15 @@
var/datum/antagonist/traitor/tot = new()
tot.give_objectives = FALSE

for(var/datum/objective/obj in objectives)
for(var/datum/objective/obj in team.objectives)
var/obj_type = obj.type
var/datum/objective/new_obj = new obj_type()
new_obj.owner = owner
new_obj.copy_target(obj)
tot.add_objective(new_obj)
qdel(obj)
objectives.Cut()

owner.add_antag_datum(tot)
owner.remove_antag_datum(/datum/antagonist/brother)
owner.add_antag_datum(tot)

/datum/antagonist/brother/proc/give_pinpointer()
if(owner && owner.current)
Expand Down