diff --git a/Content.Server/GameObjects/Components/Fluids/PuddleComponent.cs b/Content.Server/GameObjects/Components/Fluids/PuddleComponent.cs index acb752be08..435ee56ddc 100644 --- a/Content.Server/GameObjects/Components/Fluids/PuddleComponent.cs +++ b/Content.Server/GameObjects/Components/Fluids/PuddleComponent.cs @@ -345,6 +345,10 @@ namespace Content.Server.GameObjects.Components.Fluids { puddle = default; + // We're most likely in space, do nothing. + if (!Owner.Transform.GridID.IsValid()) + return false; + var mapGrid = _mapManager.GetGrid(Owner.Transform.GridID); var coords = Owner.Transform.Coordinates;