]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Add missing type argument from PopupClient to PopupEntity (#20725)
authordeltanedas <39013340+deltanedas@users.noreply.github.com>
Wed, 4 Oct 2023 18:52:04 +0000 (19:52 +0100)
committerGitHub <noreply@github.com>
Wed, 4 Oct 2023 18:52:04 +0000 (10:52 -0800)
Co-authored-by: deltanedas <@deltanedas:kde.org>
Content.Client/Popups/PopupSystem.cs

index 63b8d7f6df565e1dbaf5559400051ee7073618ae..1d4ca19ce269d75c2f898fff5b0a1f6985f73394 100644 (file)
@@ -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)