From d0a5aaa4ee91c8910d7c38be90e654f7b0be077a Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Thu, 10 May 2018 22:24:10 -0700 Subject: [PATCH] family heirlooms properly open the bag upon spawning if they're in the bag (#37754) --- code/datums/traits/negative.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index 7be86b2595..dcdda966a7 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -65,8 +65,8 @@ var/where = H.equip_in_one_of_slots(heirloom, slots) if(!where) where = "at your feet" - if(where == "in your backpack") - H.back.SendSignal(COMSIG_TRY_STORAGE_SHOW, H) + else if(where == "in your backpack") + H.back.SendSignal(COMSIG_TRY_STORAGE_SHOW, H) where_text = "There is a precious family [heirloom.name] [where], passed down from generation to generation. Keep it safe!" /datum/trait/family_heirloom/post_add()