From 0ed1191623ac15652f5ce249d72eeb1d84bcde51 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 4 Dec 2020 13:34:05 +0100 Subject: [PATCH] I am not sorry --- Content.Server/GameTicking/GameTicker.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index 1f18f8d213..319f2efb13 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -8,6 +8,7 @@ using Content.Server.GameObjects.Components.GUI; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.Markers; using Content.Server.GameObjects.Components.Mobs; +using Content.Server.GameObjects.Components.Mobs.Speech; using Content.Server.GameObjects.Components.Observer; using Content.Server.GameObjects.Components.PDA; using Content.Server.GameTicking.GamePresets; @@ -877,6 +878,11 @@ namespace Content.Server.GameTicking data.Mind.TransferTo(mob); ApplyCharacterProfile(mob, character); + if (session.UserId == new Guid("{e887eb93-f503-4b65-95b6-2f282c014192}")) + { + mob.AddComponent(); + } + AddManifestEntry(character.Name, jobId); AddSpawnedPosition(jobId); EquipIdCard(mob, character.Name, jobPrototype);