diff --git a/code/game/jobs/job/support.dm b/code/game/jobs/job/support.dm index d0dbf604b5c..cd5d8b0985f 100644 --- a/code/game/jobs/job/support.dm +++ b/code/game/jobs/job/support.dm @@ -313,10 +313,11 @@ uniform = /obj/item/clothing/under/rank/civilian/hydroponics suit = /obj/item/clothing/suit/apron + belt = /obj/item/storage/belt/botany/full gloves = /obj/item/clothing/gloves/botanic_leather shoes = /obj/item/clothing/shoes/black l_ear = /obj/item/radio/headset/headset_service - suit_store = /obj/item/plant_analyzer + l_pocket = /obj/item/storage/bag/plants/portaseeder pda = /obj/item/pda/botanist id = /obj/item/card/id/botanist backpack = /obj/item/storage/backpack/botany diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index 516c9f31907..bf61ddac158 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -304,6 +304,16 @@ /obj/item/reagent_containers/spray/pestspray ) +/obj/item/storage/belt/botany/full/populate_contents() + new /obj/item/plant_analyzer(src) + new /obj/item/cultivator(src) + new /obj/item/shovel/spade(src) + new /obj/item/hatchet(src) + new /obj/item/reagent_containers/spray/pestspray(src) + new /obj/item/wirecutters(src) + new /obj/item/wrench(src) + update_icon() + /obj/item/storage/belt/security name = "security belt" desc = "Can hold security gear like handcuffs and flashes."