From 97f15181007e6f232ca86a5cdec8078bd63a1efc Mon Sep 17 00:00:00 2001 From: paganiy <126676387+paganiy@users.noreply.github.com> Date: Mon, 18 Dec 2023 15:40:20 +0400 Subject: [PATCH] choice beacons fits in suit storage unit --- code/game/machinery/suit_storage_unit.dm | 7 +++++++ massmeta/includes.dm | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index 81985c7b73944..a4358ae337d9c 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -771,6 +771,13 @@ if(!user.transferItemToLoc(weapon, src)) return mod = weapon + else if(istype(weapon, /obj/item/choice_beacon/space_suit)) // MASSMETA EDIT + if(space_suit) // + to_chat(user, span_warning("The unit already contains a delivery beacon!")) // + return // + if(!user.transferItemToLoc(weapon, src)) // + return // + space_suit = weapon // else if(storage) to_chat(user, span_warning("The auxiliary storage compartment is full!")) diff --git a/massmeta/includes.dm b/massmeta/includes.dm index dabc07a7575d9..d2c4bc0386c6c 100644 --- a/massmeta/includes.dm +++ b/massmeta/includes.dm @@ -49,7 +49,6 @@ #include "code\modules\clothing\suits\wintercoats.dm" #include "code\modules\clothing\under\jobs\cargo.dm" #include "code\modules\clothing\under\jobs\command.dm" -#include "code\modules\clothing\under\jobs\medical.dm" #include "code\modules\clothing\under\jobs\rnd.dm" #include "code\modules\clothing\under\jobs\civilian.dm" #include "code\modules\clothing\under\jobs\security.dm"