Add PopupPredictedCursor and fix doubled popups on vending machines (#36655)
* Add PopupCursorPredicted method * Fix doubled popups on vending machine restock failures * Rename to match existing pattern
This commit is contained in:
@@ -173,6 +173,16 @@ namespace Content.Client.Popups
|
||||
PopupCursor(message, type);
|
||||
}
|
||||
|
||||
public override void PopupPredictedCursor(string? message, ICommonSession recipient, PopupType type = PopupType.Small)
|
||||
{
|
||||
PopupCursor(message, recipient, type);
|
||||
}
|
||||
|
||||
public override void PopupPredictedCursor(string? message, EntityUid recipient, PopupType type = PopupType.Small)
|
||||
{
|
||||
PopupCursor(message, recipient, type);
|
||||
}
|
||||
|
||||
public override void PopupCoordinates(string? message, EntityCoordinates coordinates, Filter filter, bool replayRecord, PopupType type = PopupType.Small)
|
||||
{
|
||||
PopupCoordinates(message, coordinates, type);
|
||||
|
||||
Reference in New Issue
Block a user