]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Bandaid solution name setter events (#41400)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Wed, 12 Nov 2025 10:24:24 +0000 (21:24 +1100)
committerGitHub <noreply@github.com>
Wed, 12 Nov 2025 10:24:24 +0000 (10:24 +0000)
Ideally PDAs + IDs wouldn't be doing this but this is slamming it out.

Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs

index cd38df021d142940fe9bed5d6ca50c30511d565d..892e4e9cac1f2b437e268b9214e0796ac30df07c 100644 (file)
@@ -1217,7 +1217,7 @@ public abstract partial class SharedSolutionContainerSystem : EntitySystem
         var relation = new ContainedSolutionComponent() { Container = container.Owner, ContainerName = name };
         AddComp(uid, relation);
 
-        MetaDataSys.SetEntityName(uid, $"solution - {name}");
+        MetaDataSys.SetEntityName(uid, $"solution - {name}", raiseEvents: false);
         ContainerSystem.Insert(uid, container, force: true);
 
         return (uid, solution, relation);