diff --git a/Projects/Server/Maps/Map.cs b/Projects/Server/Maps/Map.cs index 6761d2a53..10d0edf19 100644 --- a/Projects/Server/Maps/Map.cs +++ b/Projects/Server/Maps/Map.cs @@ -1057,9 +1057,11 @@ public sealed class Map : IComparable, ISpanFormattable, ISpanParsable } else if (o is Item item) { - if (item.RootParent != null) + // Calculate the height based on the container, not the item inside. + var rootParent = item.RootParent; + if (rootParent != null) { - p = GetPoint(item.RootParent, eye); + p = GetPoint(rootParent, eye); } else {