From 76173285b94703f2a779d4f12332b295c8d34726 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 4 Oct 2023 19:52:04 +0100 Subject: [PATCH] Add missing type argument from PopupClient to PopupEntity (#20725) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Client/Popups/PopupSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Popups/PopupSystem.cs b/Content.Client/Popups/PopupSystem.cs index 63b8d7f6df..1d4ca19ce2 100644 --- a/Content.Client/Popups/PopupSystem.cs +++ b/Content.Client/Popups/PopupSystem.cs @@ -150,7 +150,7 @@ namespace Content.Client.Popups public override void PopupClient(string message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small) { if (_timing.IsFirstTimePredicted) - PopupEntity(message, uid, recipient); + PopupEntity(message, uid, recipient, type); } public override void PopupEntity(string message, EntityUid uid, PopupType type = PopupType.Small) -- 2.51.2