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

<img width="505" height="81" alt="image"
src="https://github.com/user-attachments/assets/79e155f6-44c9-4be1-a7ec-a8719979d40e"
/>

## Changelog
🆑
fix: The off-station implant now includes an implant pad
/🆑
This commit is contained in:
Mathilde
2026-03-29 03:12:14 -04:00
committed by GitHub
parent dd851ddd80
commit 00a737aba9
@@ -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")