From 719fe612d2f1d98e674d5145794b2c224860bdd9 Mon Sep 17 00:00:00 2001 From: Marm <85680653+ItsMarmite@users.noreply.github.com> Date: Thu, 13 Feb 2025 02:25:38 +0000 Subject: [PATCH] Botany QOL, Loadout Update (#28232) * No seriously why didn't I? * that should fix that --- code/game/jobs/job/support.dm | 3 ++- code/game/objects/items/weapons/storage/belt.dm | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) 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."