From 00fbffcddf04ec55eeb2dff138956b4d48bd95c1 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 20 Sep 2021 10:15:01 +0200 Subject: [PATCH] AGhost now un-aghosts you if you are already a ghost. --- Content.Server/Administration/Commands/AGhost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Administration/Commands/AGhost.cs b/Content.Server/Administration/Commands/AGhost.cs index db64864eb4..e0f19fe5d3 100644 --- a/Content.Server/Administration/Commands/AGhost.cs +++ b/Content.Server/Administration/Commands/AGhost.cs @@ -36,7 +36,7 @@ namespace Content.Server.Administration.Commands if (mind.VisitingEntity != null && mind.VisitingEntity.HasComponent()) { - shell.WriteLine("Aren't you a ghost already?"); + player.ContentData()!.Mind?.UnVisit(); return; }