diff --git a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm index b1dd8870d3f..61ddaac84e3 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm @@ -55,7 +55,7 @@ return ..() /obj/machinery/smartfridge/proc/accept_check(obj/item/O) - if(istype(O,/obj/item/weapon/reagent_containers/food/snacks/grown/) || istype(O,/obj/item/seeds/)) + if(istype(O,/obj/item/weapon/reagent_containers/food/snacks/grown/) || istype(O,/obj/item/seeds/) || istype(O,/obj/item/weapon/grown/)) return 1 return 0 diff --git a/code/modules/hydroponics/gene_modder.dm b/code/modules/hydroponics/gene_modder.dm index 7553b39aac3..dcfd2601813 100644 --- a/code/modules/hydroponics/gene_modder.dm +++ b/code/modules/hydroponics/gene_modder.dm @@ -358,7 +358,7 @@ /obj/item/weapon/disk/plantgene name = "plant data disk" desc = "A disk for storing plant genetic data." - icon_state = "datadisk2" + icon_state = "datadisk_hydro" materials = list(MAT_METAL=30, MAT_GLASS=10) var/datum/plant_gene/gene var/read_only = 0 //Well, it's still a floppy disk diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 9d2315865c1..5919113eb16 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -982,4 +982,4 @@ to_chat(user, "You clear up [src]!") qdel(src) else - return ..() + ..() \ No newline at end of file diff --git a/code/modules/research/designs/biogenerator_designs.dm b/code/modules/research/designs/biogenerator_designs.dm index d2931012299..fb6201eaf31 100644 --- a/code/modules/research/designs/biogenerator_designs.dm +++ b/code/modules/research/designs/biogenerator_designs.dm @@ -139,6 +139,14 @@ build_path = /obj/item/weapon/storage/belt/utility category = list("initial","Leather and Cloth") +/datum/design/hydrobelt + name = "Botanist belt" + id = "hydrobelt" + build_type = BIOGENERATOR + materials = list(MAT_BIOMASS = 300) + build_path = /obj/item/weapon/storage/belt/botany + category = list("initial","Leather and Cloth") + /datum/design/secbelt name = "Security belt" id = "secbelt" diff --git a/icons/obj/module.dmi b/icons/obj/module.dmi index a9dfb12339d..0a269e0d8b7 100644 Binary files a/icons/obj/module.dmi and b/icons/obj/module.dmi differ