From f2c72f7c0ea6fa04c118c71ad2b26922005d81a0 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Tue, 7 Dec 2021 18:10:51 +0100 Subject: [PATCH] Fix last test --- .../Chemistry/EntitySystems/ChemicalReactionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Chemistry/EntitySystems/ChemicalReactionSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemicalReactionSystem.cs index 5a8745f5ab..a5131361a7 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemicalReactionSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemicalReactionSystem.cs @@ -15,7 +15,7 @@ namespace Content.Server.Chemistry.EntitySystems { base.OnReaction(solution, reaction, randomReagent, Owner, unitReactions); - var coordinates = EntityManager.GetComponent(Owner); + var coordinates = EntityManager.GetComponent(Owner).Coordinates; _logSystem.Add(LogType.ChemicalReaction, reaction.Impact, $"Chemical reaction {reaction.ID} occurred with strength {unitReactions:strength} on entity {Owner} at {coordinates}");