From a59f301121fc5c9496a218180c812220d370b864 Mon Sep 17 00:00:00 2001 From: Theomund <34360334+Theomund@users.noreply.github.com> Date: Sun, 15 Jan 2023 21:29:44 -0500 Subject: [PATCH] Fix construction popup messages (#13470) resolves https://github.com/space-wizards/space-station-14/issues/13333 --- Content.Server/Construction/ConstructionSystem.Initial.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Server/Construction/ConstructionSystem.Initial.cs b/Content.Server/Construction/ConstructionSystem.Initial.cs index 56db9efc52..2b950902df 100644 --- a/Content.Server/Construction/ConstructionSystem.Initial.cs +++ b/Content.Server/Construction/ConstructionSystem.Initial.cs @@ -96,7 +96,7 @@ namespace Content.Server.Construction if (existed) { - _popup.PopupCursor(Loc.GetString("construction-system-construct-cannot-start-another-construction"), user); + _popup.PopupEntity(Loc.GetString("construction-system-construct-cannot-start-another-construction"), user, user); return null; } @@ -221,7 +221,7 @@ namespace Content.Server.Construction if (failed) { - _popup.PopupCursor(Loc.GetString("construction-system-construct-no-materials"), user); + _popup.PopupEntity(Loc.GetString("construction-system-construct-no-materials"), user, user); FailCleanup(); return null; } @@ -379,7 +379,7 @@ namespace Content.Server.Construction if (_container.IsEntityInContainer(user)) { - _popup.PopupCursor(Loc.GetString("construction-system-inside-container"), user); + _popup.PopupEntity(Loc.GetString("construction-system-inside-container"), user, user); return; } @@ -392,7 +392,7 @@ namespace Content.Server.Construction { if (!set.Add(ev.Ack)) { - _popup.PopupCursor(Loc.GetString("construction-system-already-building"), user); + _popup.PopupEntity(Loc.GetString("construction-system-already-building"), user, user); return; } }