From 934f816c2430684df41bdfa736607a67eb100dcd Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 18 Apr 2023 06:52:40 +0200 Subject: [PATCH] [MIRROR] Shoe storage can now fit box cutters, pills, and toy pistol magazines. [MDB IGNORE] (#20630) * Shoe storage can now fit box cutters, pills, and toy pistol magazines. (#74762) ## About The Pull Request Shoe storage can now fit box cutters, pills, and toy pistol magazines. All of these have better-or-equal similar items that can already be fitted in. Box cutters - Switchblades (Better in every way) Pills - Syringes and Medipens (Mostly sidegrades) Toy magazines - Actual pistol magazines ## Why It's Good For The Game More stuff you can shove into your shoes, consistency with similar items. Honestly I'm not too fond of this strange whitelist system, wouldn't a blacklist be better and more intuitive? If there's any items you want me to add, comment below with them. ## Changelog :cl: qol: Shoe storage can now fit box cutters, pills, and toy pistol magazines. /:cl: * Shoe storage can now fit box cutters, pills, and toy pistol magazines. --------- Co-authored-by: carlarctg <53100513+carlarctg@users.noreply.github.com> --- code/datums/storage/subtypes/pockets.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/datums/storage/subtypes/pockets.dm b/code/datums/storage/subtypes/pockets.dm index 6713e84c667..3549ee9f79a 100644 --- a/code/datums/storage/subtypes/pockets.dm +++ b/code/datums/storage/subtypes/pockets.dm @@ -76,10 +76,12 @@ set_holdable(list( /obj/item/knife, /obj/item/switchblade, + /obj/item/boxcutter, /obj/item/pen, /obj/item/scalpel, - /obj/item/reagent_containers/syringe, /obj/item/dnainjector, + /obj/item/reagent_containers/syringe, + /obj/item/reagent_containers/pill, /obj/item/reagent_containers/hypospray/medipen, /obj/item/reagent_containers/dropper, /obj/item/implanter, @@ -90,6 +92,7 @@ /obj/item/ammo_box/magazine/m9mm, /obj/item/ammo_box/magazine/m10mm, /obj/item/ammo_box/magazine/m45, + /obj/item/ammo_box/magazine/toy/pistol, /obj/item/ammo_casing, /obj/item/lipstick, /obj/item/clothing/mask/cigarette,