From 9b76fa95aa7be2b4a46adbde751cad18ee78a171 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Thu, 25 Feb 2021 11:37:01 +0100 Subject: [PATCH] Fix EmptyContainer graph action for items --- Content.Server/Construction/Completions/EmptyContainer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Construction/Completions/EmptyContainer.cs b/Content.Server/Construction/Completions/EmptyContainer.cs index 624ddfcadb..f0fdb483b5 100644 --- a/Content.Server/Construction/Completions/EmptyContainer.cs +++ b/Content.Server/Construction/Completions/EmptyContainer.cs @@ -27,6 +27,7 @@ namespace Content.Server.Construction.Completions !containerManager.TryGetContainer(Container, out var container)) return; container.EmptyContainer(true, entity.Transform.Coordinates); + entity.Transform.AttachToGridOrMap(); } } }