Fixed logic error inside CanItemBePlacedInContainerAtPosition

This commit is contained in:
Chomp
2025-07-04 09:06:23 +01:00
parent 973ea857f9
commit 52bb6f3cab
@@ -207,8 +207,8 @@ namespace SPTarkov.Server.Core.Extensions
int itemYHeight
)
{
var containerHeight = container.GetLength(0); // Rows
var containerWidth = container.GetLength(1); // Columns
var containerHeight = container.GetLength(1); // Rows
var containerWidth = container.GetLength(0); // Columns
// Check item isn't bigger than container when at position
if (