Skip to content

Commit

Permalink
Merge pull request #1074 from DexeeXI/other-fixes
Browse files Browse the repository at this point in the history
Other fixes
  • Loading branch information
wraith-54321 authored Feb 2, 2024
2 parents 3dd63f2 + 6fc575d commit 8c31f0b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion _maps/map_files/Deltastation/DeltaStation2.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -17092,6 +17092,10 @@
/obj/effect/turf_decal/bot/left,
/turf/open/floor/iron,
/area/station/maintenance/department/electrical)
"edM" = (
/obj/machinery/egg_incubator,
/turf/open/floor/iron,
/area/station/service/hydroponics)
"edS" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/machinery/firealarm/directional/south,
Expand Down Expand Up @@ -128639,7 +128643,7 @@ nzA
cVt
ogZ
jTB
ogZ
edM
bWL
vZQ
auZ
Expand Down
2 changes: 1 addition & 1 deletion code/modules/client/verbs/suicide.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
if(!can_suicide())
return FALSE

var/confirm = tgui_alert(src, "Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
var/confirm = tgui_alert(src, "Are you sure you want to commit suicide? If you are leaving the round, use cryo instead.", "Confirm Suicide", list("Yes", "No")) // MONKESTATION EDIT: clarification to state they should go to cryo instead of just killing themselves.

// ensure our situation didn't change while we were sleeping waiting for the tgui_alert.
if(!can_suicide() || (ckey != oldkey))
Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/dead/observer/observer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
if(!HAS_TRAIT(src, TRAIT_CORPSELOCKED)) //corpse-locked have to confirm with the alert below
ghostize(TRUE)
return TRUE
var/response = tgui_alert(usr, "Are you sure you want to ghost? You won't be able to re-enter your body!", "Confirm Ghost Observe", list("Ghost", "Stay in Body"))
var/response = tgui_alert(usr, "Are you sure you want to ghost? You won't be able to re-enter your body! If you are leaving the round, use cryo instead.", "Confirm Ghost Observe", list("Ghost", "Stay in Body")) // MONKESTATION EDIT: issuing commands to use cryo instead of just ghosting in a locker.
if(response != "Ghost")
return FALSE//didn't want to ghost after-all
ghostize(FALSE) // FALSE parameter is so we can never re-enter our body. U ded.
Expand All @@ -337,7 +337,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
set name = "Ghost"
set desc = "Relinquish your life and enter the land of the dead."

var/response = tgui_alert(usr, "Are you sure you want to ghost? If you ghost whilst still alive you cannot re-enter your body!", "Confirm Ghost Observe", list("Ghost", "Stay in Body"))
var/response = tgui_alert(usr, "Are you sure you want to ghost? If you ghost whilst still alive you cannot re-enter your body! If you are leaving the round, use cryo instead.", "Confirm Ghost Observe", list("Ghost", "Stay in Body")) // MONKESTATION EDIT: issuing commands to use cryo instead of just ghosting in a locker.
if(response != "Ghost")
return
ghostize(FALSE)
Expand Down
1 change: 1 addition & 0 deletions code/modules/mob/living/carbon/human/death.dm
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ GLOBAL_LIST_EMPTY(dead_players_during_shift)
<b>Blood volume</b>: [src.blood_volume]cl ([round((src.blood_volume / BLOOD_VOLUME_NORMAL) * 100, 0.1)]%)<br>\
<b>Reagents</b>:<br>[reagents_readout()]", INVESTIGATE_DEATHS)
to_chat(src, span_warning("You have died. Barring complete bodyloss, you can in most cases be revived by other players. If you do not wish to be brought back, use the \"Do Not Resuscitate\" verb in the ghost tab."))
to_chat(src, span_greentext("You can no longer recall who was responsible for your death.")) // MONKESTATION EDIT: making an explicit request that someone review DA RULEZ.

/mob/living/carbon/human/proc/reagents_readout()
var/readout = "Blood:"
Expand Down

0 comments on commit 8c31f0b

Please sign in to comment.