From ae1f55656e13b005868bb5e01f861098d1eae238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= Date: Sat, 15 Aug 2020 03:23:57 +0200 Subject: [PATCH] Fix pressure difference direction being incorrect. --- Content.Server/Atmos/TileAtmosphere.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/TileAtmosphere.cs b/Content.Server/Atmos/TileAtmosphere.cs index 851091f7bd..eab7e6b9ad 100644 --- a/Content.Server/Atmos/TileAtmosphere.cs +++ b/Content.Server/Atmos/TileAtmosphere.cs @@ -598,7 +598,7 @@ namespace Content.Server.Atmos if (difference > PressureDifference) { PressureDifference = difference; - _pressureDirection = ((Vector2i) (tile.GridIndices - GridIndices)).GetCardinalDir(); + _pressureDirection = ((Vector2i) (GridIndices - tile.GridIndices)).GetCardinalDir(); } }