From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 4 Oct 2023 18:52:04 +0000 (+0100) Subject: Add missing type argument from PopupClient to PopupEntity (#20725) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=76173285b94703f2a779d4f12332b295c8d34726;p=space-station-14.git Add missing type argument from PopupClient to PopupEntity (#20725) Co-authored-by: deltanedas <@deltanedas:kde.org> --- 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)