aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Server
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Server')
-rw-r--r--ShiftOS.Server/Core.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/ShiftOS.Server/Core.cs b/ShiftOS.Server/Core.cs
index e14ca27..7bb5b1d 100644
--- a/ShiftOS.Server/Core.cs
+++ b/ShiftOS.Server/Core.cs
@@ -38,6 +38,37 @@ namespace ShiftOS.Server
{
public static class Core
{
+ [MudRequest("mud_forward", typeof(ServerMessage))]
+ public static void ForwardMessage(string guid, ServerMessage message)
+ {
+ if (message.GUID == "all")
+ {
+ Server.Program.server.DispatchAll(new NetObject("forward", new ServerMessage
+ {
+ Name = "forward",
+ GUID = "Server",
+ Contents = JsonConvert.SerializeObject(message)
+ }));
+ }
+ else
+ {
+ try
+ {
+ Server.Program.server.DispatchTo(new Guid(message.GUID), new NetObject("forward", new ServerMessage
+ {
+ Name = "forward",
+ GUID = "Server",
+ Contents = JsonConvert.SerializeObject(message)
+ }));
+ }
+ catch
+ {
+
+ }
+ }
+ }
+
+
[MudRequest("getguid_reply", typeof(string))]
public static void GuidBounce(string guid, object contents)
{