Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions code/_onclick/hud/fullscreen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,7 @@
var/mob/living/L = usr
if(L.stat != DEAD)
if(alert("Are you done living?", "", "Yes", "No") == "Yes")
if(!L.succumb_timer || (world.time < L.succumb_timer + 111 SECONDS) )
var/ttime = round(((L.succumb_timer + 111 SECONDS) - world.time) / 10)
to_chat(L, span_redtext("I'm not dead enough yet. [ttime]"))
else
L.succumb(reaper = TRUE)
L.succumb(reaper = TRUE)

/atom/movable/screen/fullscreen/crit/death
icon_state = "DD"
Expand Down
Loading