[draft] examine tweaks (#161)

* deathgasps component, clothes examine system

* howered entities code w/o ui (#162)

Co-authored-by: Mona Hmiza <>

* lazy, mb later

* fuck

* wonderробукс bump

* trying to fix уамлики
This commit is contained in:
rhailrake
2023-06-13 19:33:50 +00:00
committed by Aviu00
parent 3fa30256ce
commit 518b730864
19 changed files with 1147 additions and 283 deletions

View File

@@ -1,5 +1,4 @@
using Content.Server.Access.Systems;
using Content.Server.DetailExaminable;
using Content.Server.Humanoid;
using Content.Server.IdentityManagement;
using Content.Server.Mind.Commands;
@@ -18,6 +17,7 @@ using Content.Shared.Roles;
using Content.Shared.Roles.Jobs;
using Content.Shared.Station;
using Content.Shared.StatusIcon;
using Content.Shared.White.CharacterExamine;
using JetBrains.Annotations;
using Robust.Shared.Configuration;
using Robust.Shared.Map;
@@ -157,7 +157,9 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem
_metaSystem.SetEntityName(entity.Value, profile.Name);
if (profile.FlavorText != "" && _configurationManager.GetCVar(CCVars.FlavorText))
{
AddComp<DetailExaminableComponent>(entity.Value).Content = profile.FlavorText;
var detail = AddComp<DetailExaminableComponent>(entity.Value);
detail.Content = profile.FlavorText;
Dirty(detail);
}
}