From 8f2969d8301a7a141cebccf759002cc1a366c190 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 19 Jun 2023 23:33:58 +0200 Subject: [PATCH] [MIRROR] mediborg beaker apparatuses can now hold test tubes [MDB IGNORE] (#21923) * mediborg beaker apparatuses can now hold test tubes (#76118) ## About The Pull Request In addition to the beakers and bottles they could already hold, mediborg beaker apparatuses can now hold test tubes. The descriptions of beaker and drink apparatuses have been updated to more accurately reflect what they can and can't hold. ## Why It's Good For The Game Fixes https://github.com/tgstation/tgstation/issues/76111. This seems to just be an oversight from the PR that added test tubes, especially since service borg drink apparatuses can hold condiment packets. ## Changelog :cl: fix: In addition to the beakers and bottles they could already hold, mediborg beaker apparatuses can now hold test tubes. spellcheck: The descriptions of beaker and drink apparatuses have been updated to more accurately reflect what they can and can't hold. /:cl: --------- Co-authored-by: tattle <66640614+dragomagol@ users.noreply.github.com> * mediborg beaker apparatuses can now hold test tubes --------- Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> Co-authored-by: tattle <66640614+dragomagol@ users.noreply.github.com> --- code/game/objects/items/robot/items/storage.dm | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/code/game/objects/items/robot/items/storage.dm b/code/game/objects/items/robot/items/storage.dm index 54793794d6b..958058de05e 100644 --- a/code/game/objects/items/robot/items/storage.dm +++ b/code/game/objects/items/robot/items/storage.dm @@ -93,10 +93,13 @@ /obj/item/borg/apparatus/beaker name = "beaker storage apparatus" - desc = "A special apparatus for carrying beakers without spilling the contents." + desc = "A special apparatus for carrying beakers, bottles, and test tubes without spilling their contents." icon_state = "borg_beaker_apparatus" - storable = list(/obj/item/reagent_containers/cup/beaker, - /obj/item/reagent_containers/cup/bottle) + storable = list( + /obj/item/reagent_containers/cup/beaker, + /obj/item/reagent_containers/cup/bottle, + /obj/item/reagent_containers/cup/tube, + ) /obj/item/borg/apparatus/beaker/Initialize(mapload) add_glass() @@ -159,10 +162,12 @@ /obj/item/borg/apparatus/beaker/service name = "beverage storage apparatus" - desc = "A special apparatus for carrying drinks without spilling the contents. Will resynthesize any drinks you pour out!" + desc = "A special apparatus for carrying drinks and condiment packets without spilling their contents. Will resynthesize any drinks (or other nutritional liquids) you pour out of glasses!" icon_state = "borg_beaker_apparatus" - storable = list(/obj/item/reagent_containers/cup/glass, - /obj/item/reagent_containers/condiment) + storable = list( + /obj/item/reagent_containers/cup/glass, + /obj/item/reagent_containers/condiment, + ) /obj/item/borg/apparatus/beaker/service/add_glass() stored = new /obj/item/reagent_containers/cup/glass/drinkingglass(src)