diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index eb689593f03..d38d8f76bcf 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -111,7 +111,7 @@ if("Cook") heirloom_type = pick(/obj/item/reagent_containers/food/condiment/saltshaker, /obj/item/kitchen/rollingpin, /obj/item/clothing/head/chefhat) if("Botanist") - heirloom_type = pick(/obj/item/cultivator, /obj/item/reagent_containers/glass/bucket, /obj/item/storage/bag/plants, /obj/item/toy/plush/beeplushie) + heirloom_type = pick(/obj/item/cultivator, /obj/item/reagent_containers/glass/bucket, /obj/item/toy/plush/beeplushie) if("Bartender") heirloom_type = pick(/obj/item/reagent_containers/glass/rag, /obj/item/clothing/head/that, /obj/item/reagent_containers/food/drinks/shaker) if("Curator") @@ -183,7 +183,8 @@ var/list/slots = list( "in your left pocket" = ITEM_SLOT_LPOCKET, "in your right pocket" = ITEM_SLOT_RPOCKET, - "in your backpack" = ITEM_SLOT_BACKPACK + "in your backpack" = ITEM_SLOT_BACKPACK, + "in your hands" = ITEM_SLOT_HANDS ) where = H.equip_in_one_of_slots(heirloom, slots, FALSE) || "at your feet"