Improve paper stamping experience (#17135)
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
using Content.Server.DeviceNetwork.Components;
|
||||
using Content.Server.DeviceNetwork.Components;
|
||||
using Content.Server.EUI;
|
||||
using Content.Server.Ghost.Components;
|
||||
using Content.Shared.Eui;
|
||||
using Content.Shared.Fax;
|
||||
using Content.Shared.Follower;
|
||||
using Content.Shared.Paper;
|
||||
|
||||
namespace Content.Server.Fax.AdminUI;
|
||||
|
||||
@@ -53,7 +54,8 @@ public sealed class AdminFaxEui : BaseEui
|
||||
}
|
||||
case AdminFaxEuiMsg.Send sendData:
|
||||
{
|
||||
var printout = new FaxPrintout(sendData.Content, sendData.Title, null, sendData.StampState, new() { sendData.From });
|
||||
var printout = new FaxPrintout(sendData.Content, sendData.Title, null, sendData.StampState,
|
||||
new() { new StampDisplayInfo { StampedName = sendData.From, StampedColor = sendData.StampColor } });
|
||||
_faxSystem.Receive(sendData.Target, printout);
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user