]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
forensics cleanup (#35795)
authorslarticodefast <161409025+slarticodefast@users.noreply.github.com>
Wed, 12 Mar 2025 17:57:06 +0000 (18:57 +0100)
committerGitHub <noreply@github.com>
Wed, 12 Mar 2025 17:57:06 +0000 (18:57 +0100)
Content.Server/Forensics/Systems/ForensicsSystem.cs

index a52b06039135be1153b96e591ecce2b572b228a4..27df086ae1b91810bfa4c457d45be337931359d2 100644 (file)
@@ -73,7 +73,6 @@ namespace Content.Server.Forensics
 
         private void OnDNAInit(Entity<DnaComponent> ent, ref MapInitEvent args)
         {
-            Log.Debug($"Init DNA {Name(ent.Owner)} {ent.Comp.DNA}");
             if (ent.Comp.DNA == null)
                 RandomizeDNA((ent.Owner, ent.Comp));
             else
@@ -327,7 +326,6 @@ namespace Content.Server.Forensics
             ent.Comp.DNA = GenerateDNA();
             Dirty(ent);
 
-            Log.Debug($"Randomize DNA {Name(ent.Owner)} {ent.Comp.DNA}");
             var ev = new GenerateDnaEvent { Owner = ent.Owner, DNA = ent.Comp.DNA };
             RaiseLocalEvent(ent.Owner, ref ev);
         }