From a7c9593aa6beb3955b14e565f4dcd7a6fa9d458d Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 21 Jan 2018 10:15:26 -0500 Subject: [PATCH] Merge pull request #34695 from AnturK/brotherobjectivefix Fixes brother objectives not showing in TP --- code/datums/antagonists/brother.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/datums/antagonists/brother.dm b/code/datums/antagonists/brother.dm index e4c43ef788..fc690fd2bb 100644 --- a/code/datums/antagonists/brother.dm +++ b/code/datums/antagonists/brother.dm @@ -17,14 +17,15 @@ /datum/antagonist/brother/on_gain() SSticker.mode.brothers += owner - owner.objectives += team.objectives + objectives += team.objectives + owner.objectives += objectives owner.special_role = special_role finalize_brother() return ..() /datum/antagonist/brother/on_removal() SSticker.mode.brothers -= owner - owner.objectives -= team.objectives + owner.objectives -= objectives if(owner.current) to_chat(owner.current,"You are no longer the [special_role]!") owner.special_role = null