From 1c239e57fda37af9dcfd2da6d7c7bc89737e5b4c Mon Sep 17 00:00:00 2001 From: Profakos Date: Tue, 28 Jun 2016 12:00:07 +0200 Subject: [PATCH] Fixes duplicate export type names (#18944) The export datums for bomb, bio and radsuits and -helmets were all had the same name, this fixes that. --- code/modules/cargo/exports/gear.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/cargo/exports/gear.dm b/code/modules/cargo/exports/gear.dm index b153d371860..91bd2393cb6 100644 --- a/code/modules/cargo/exports/gear.dm +++ b/code/modules/cargo/exports/gear.dm @@ -107,23 +107,23 @@ export_types = list(/obj/item/clothing/suit/radiation) // Biosuits -/datum/export/gear/radhelmet +/datum/export/gear/biohood cost = 50 unit_name = "biosuit hood" - export_types = list(/obj/item/clothing/head/radiation) + export_types = list(/obj/item/clothing/head/bio_hood) -/datum/export/gear/radsuit +/datum/export/gear/biosuit cost = 100 unit_name = "biosuit" - export_types = list(/obj/item/clothing/suit/radiation) + export_types = list(/obj/item/clothing/suit/bio_suit) // Bombsuits -/datum/export/gear/radhelmet +/datum/export/gear/bombhelmet cost = 100 unit_name = "bomb suit hood" export_types = list(/obj/item/clothing/head/bomb_hood) -/datum/export/gear/radsuit +/datum/export/gear/bombsuit cost = 300 unit_name = "bomb suit" export_types = list(/obj/item/clothing/suit/bomb_suit) \ No newline at end of file