diff --git a/Content.Server/DeviceNetwork/DeviceNetworkConnection.cs b/Content.Server/DeviceNetwork/DeviceNetworkConnection.cs index 9cc17e8cb1..1b7116b799 100644 --- a/Content.Server/DeviceNetwork/DeviceNetworkConnection.cs +++ b/Content.Server/DeviceNetwork/DeviceNetworkConnection.cs @@ -40,7 +40,7 @@ namespace Content.Server.GameObjects.EntitySystems.DeviceNetwork public bool Send(int frequency, string address, Dictionary payload) { - return Send(frequency, address, payload); + return Send(frequency, address, payload, new Metadata()); } public bool Send(string address, Dictionary payload) @@ -55,7 +55,7 @@ namespace Content.Server.GameObjects.EntitySystems.DeviceNetwork public bool Broadcast(int frequency, Dictionary payload) { - return Broadcast(frequency, payload); + return Broadcast(frequency, payload, new Metadata()); } public bool Broadcast(Dictionary payload)