botanist heirloom fix (#50481)

This commit is contained in:
Mickyan
2020-04-19 15:49:23 +08:00
committed by GitHub
parent d7b7b16873
commit 03186bf3c2
+3 -2
View File
@@ -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"