Improves MindComponent's description. Force ghost without body return when commiting suicide.

This commit is contained in:
Víctor Aguilera Puerto
2020-08-16 17:08:27 +02:00
parent d58d84096b
commit 83567c1bd9
3 changed files with 11 additions and 3 deletions

View File

@@ -137,7 +137,8 @@ namespace Content.Server.GameObjects.Components.Mobs
}
else if (Mind?.Session == null)
{
message.AddMarkup("[color=yellow]" + Loc.GetString("{0:They} {0:have} a blank, absent-minded stare and appears completely unresponsive to anything. {0:They} may snap out of it soon.", Owner) + "[/color]");
if(!dead)
message.AddMarkup("[color=yellow]" + Loc.GetString("{0:They} {0:have} a blank, absent-minded stare and appears completely unresponsive to anything. {0:They} may snap out of it soon.", Owner) + "[/color]");
}
}
}