Add missing type argument from PopupClient to PopupEntity (#20725)

Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
deltanedas
2023-10-04 19:52:04 +01:00
committed by GitHub
parent ed9e44d2d9
commit 76173285b9

View File

@@ -150,7 +150,7 @@ namespace Content.Client.Popups
public override void PopupClient(string message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small) public override void PopupClient(string message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small)
{ {
if (_timing.IsFirstTimePredicted) if (_timing.IsFirstTimePredicted)
PopupEntity(message, uid, recipient); PopupEntity(message, uid, recipient, type);
} }
public override void PopupEntity(string message, EntityUid uid, PopupType type = PopupType.Small) public override void PopupEntity(string message, EntityUid uid, PopupType type = PopupType.Small)