diff --git a/code/game/objects/closets/firecloset.dm b/code/game/objects/closets/firecloset.dm index 222ac8a4398..7d8257684cf 100644 --- a/code/game/objects/closets/firecloset.dm +++ b/code/game/objects/closets/firecloset.dm @@ -9,7 +9,7 @@ if ("nothing") //better luck next time if ("bare-bones") - new /obj/item/weapon/tank/emergency_oxygen(src) + new /obj/item/weapon/extinguisher(src) if ("basic") new /obj/item/clothing/mask/breath(src) new /obj/item/weapon/tank/emergency_oxygen(src) @@ -18,8 +18,10 @@ new /obj/item/clothing/mask/breath(src) new /obj/item/weapon/tank/oxygen(src) new /obj/item/weapon/extinguisher(src) + new /obj/item/clothing/head/helmet/hardhat(src) if ("untouched") new /obj/item/clothing/mask/breath(src) new /obj/item/weapon/tank/oxygen(src) new /obj/item/weapon/extinguisher(src) - new /obj/item/clothing/suit/fire/firefighter(src) \ No newline at end of file + new /obj/item/clothing/suit/fire/firefighter(src) + new /obj/item/clothing/head/helmet/hardhat(src) \ No newline at end of file