[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

🆑
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.
/🆑

---------

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>
This commit is contained in:
SkyratBot
2023-06-19 17:33:58 -04:00
committed by GitHub
co-authored by tattle ATH1909
parent 2959616356
commit 8f2969d830
+11 -6
View File
@@ -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)