From 95de33684feda196477c14ea23cb2d93f3a634f5 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 2 Jul 2021 18:18:02 +0300 Subject: [PATCH] Earlyport fix for ghosting as admin The verb got completely broken. --- code/modules/mob/dead/observer/observer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 545b76300b..635762fa00 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -216,7 +216,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp else var/response if(src.client && src.client.holder) - response = tgui_alert(src, "You have the ability to Admin-Ghost. The regular Ghost verb will announce your presence to dead chat. Both variants will allow you to return to your body using 'aghost'.\n\nWhat do you wish to do?", "Are you sure you want to ghost?", "Ghost", list("Admin Ghost", "Stay in body")) + response = tgui_alert(src, "You have the ability to Admin-Ghost. The regular Ghost verb will announce your presence to dead chat. Both variants will allow you to return to your body using 'aghost'.\n\nWhat do you wish to do?", "Are you sure you want to ghost?", list("Admin Ghost", "Stay in body")) if(response == "Admin Ghost") if(!src.client) return