From b95f910a4e8d8a076bceca5de3573cd3a5512e3d Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Mon, 7 Oct 2019 17:32:16 +0200 Subject: [PATCH] macros --- code/game/objects/items/implants/implant_track.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/implants/implant_track.dm b/code/game/objects/items/implants/implant_track.dm index fc7539af9e..4398688cee 100644 --- a/code/game/objects/items/implants/implant_track.dm +++ b/code/game/objects/items/implants/implant_track.dm @@ -2,13 +2,13 @@ name = "tracking implant" desc = "Track with this." activated = FALSE - var/lifespan_postmortem = 6000 //for how many deciseconds after user death will the implant work? + var/lifespan_postmortem = 10 MINUTES //for how many deciseconds after user death will the implant work? var/allow_teleport = TRUE //will people implanted with this act as teleporter beacons? /obj/item/implant/tracking/c38 name = "TRAC implant" desc = "A smaller tracking implant that supplies power for only a few minutes." - var/lifespan = 3000 //how many deciseconds does the implant last? + var/lifespan = 5 MINUTES //how many deciseconds does the implant last? allow_teleport = FALSE /obj/item/implant/tracking/c38/Initialize()