From 9ddc3b2049fd429619ee6e98551ec633d76032e3 Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Mon, 22 Jul 2024 22:23:04 -0500 Subject: [PATCH] Makes the QSI Popup Nicer (#30265) --- Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs index a5ad77d43bf0..15807794c38e 100644 --- a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs +++ b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs @@ -164,9 +164,9 @@ public void DoTeleport(Entity ent) return; } - _popup.PopupEntity(Loc.GetString("swap-teleporter-popup-teleport-other", + _popup.PopupClient(Loc.GetString("swap-teleporter-popup-teleport-other", ("entity", Identity.Entity(linkedEnt, EntityManager))), - otherTeleEnt, + teleEnt, otherTeleEnt, PopupType.MediumCaution); _transform.SwapPositions(teleEnt, otherTeleEnt);