From 00a737aba9743faaa2b19674ef191159f49f2f98 Mon Sep 17 00:00:00 2001 From: Mathilde <146444134+ibexgoetia@users.noreply.github.com> Date: Sun, 29 Mar 2026 09:12:14 +0200 Subject: [PATCH] Off-Station Deathrattle fix (#5376) ## About The Pull Request I've fixed https://github.com/Bubberstation/Bubberstation/pull/5343 by adding an implant pad to the box, necessary for configuring the off-station implant and make it work. ## Why It's Good For The Game bugs bad ## Proof Of Testing image ## Changelog :cl: fix: The off-station implant now includes an implant pad /:cl: --- .../modules/implants/code/implant_deathrattle_offstation.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modular_zubbers/code/modules/implants/code/implant_deathrattle_offstation.dm b/modular_zubbers/code/modules/implants/code/implant_deathrattle_offstation.dm index bbd26141e57..614f6f97450 100644 --- a/modular_zubbers/code/modules/implants/code/implant_deathrattle_offstation.dm +++ b/modular_zubbers/code/modules/implants/code/implant_deathrattle_offstation.dm @@ -137,13 +137,14 @@ GLOBAL_VAR_INIT(offstation_deathrattle_group, null) imp_type = /obj/item/implant/deathrattle/offstation /obj/item/storage/box/offstation_deathrattle - name = "off-station deathrattle kit" - desc = "A box containing an implanter and an off-station deathrattle implant, which automatically sends a distress call to the cargo and medical departments in case of premature demise. It will only work outside of Station areas." + name = "boxed off-station deathrattle implant kit" + desc = "A quick and easy kit for a single deathrattle implant that will send a distress signal to the medical and supply channels when the user dies off-station. Perfect for miners and space hikers alike!" icon = 'modular_skyrat/modules/aesthetics/storage/storage.dmi' icon_state = "box" /obj/item/storage/box/offstation_deathrattle/PopulateContents() new /obj/item/implanter(src) + new /obj/item/implantpad(src) var/obj/item/implantcase/deathrattle/offstation/case = new(src) if(!GLOB.offstation_deathrattle_group) GLOB.offstation_deathrattle_group = new /datum/offstation_deathrattle_group("off-station group")