From 38ea9ed55bb42721dcf3399b09b9111e0ae57499 Mon Sep 17 00:00:00 2001 From: aproposmath Date: Sun, 14 Jun 2026 09:56:32 +0200 Subject: [PATCH] Fix for latest Stationeers beta --- PlacementBoardPatches.Construction.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlacementBoardPatches.Construction.cs b/PlacementBoardPatches.Construction.cs index 42738ec..93dd35c 100644 --- a/PlacementBoardPatches.Construction.cs +++ b/PlacementBoardPatches.Construction.cs @@ -98,7 +98,7 @@ static bool UpdatePlacement(ref Structure structure) { boardStructure.Board = null; // this is copied from InventoryManager.PlacementMode to get the base cursor placement position - InventoryManager.ConstructionCursor.ThingTransformPosition = InputHelpers.GetCameraForwardGrid(0.6f, InventoryManager.ConstructionCursor.GetCursorOffset); + InventoryManager.ConstructionCursor.ThingTransformPosition = InputHelpers.GetCameraForwardGrid(0.6f, InventoryManager.ConstructionCursor.GetCursorOffset, out var _); InventoryManager.ConstructionCursor.ThingTransformRotation = InventoryManager.Parent.ThingTransformRotation; InventoryManager.CurrentRotation = InventoryManager.ConstructionCursor.ThingTransformRotation; }