diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index ec780d1f99..7e854e8bbf 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -810,7 +810,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem // At least for now unless we do lookups or smth, only work with anchoring. if (_xformQuery.TryGetComponent(ent, out var xform) && !xform.Anchored) { - _transform.AnchorEntity(ent, xform, gridUid, grid, indices); + _transform.AnchorEntity((ent, xform), (gridUid, grid), indices); } loadedEntities.Add(ent, indices); diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index 5b4de34906..ddd4a4732f 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -177,7 +177,7 @@ public sealed partial class DungeonSystem // If the templated entity was anchored then anchor us too. if (anchored && !childXform.Anchored) - _transform.AnchorEntity(ent, childXform, grid); + _transform.AnchorEntity((ent, childXform), (gridUid, grid)); else if (!anchored && childXform.Anchored) _transform.Unanchor(ent, childXform); }