servuo/Scripts/Misc/Broadcasts.cs
TrueUO b73897e554
Cleanup (#4848)
- Cleanup of various double calls and simplified code where possible.

Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
2020-09-16 07:43:44 -07:00

37 lines
903 B
C#

using System;
namespace Server.Misc
{
public class Broadcasts
{
public static void Initialize()
{
EventSink.Crashed += EventSink_Crashed;
EventSink.Shutdown += EventSink_Shutdown;
}
public static void EventSink_Crashed(CrashedEventArgs e)
{
try
{
World.Broadcast(0x35, true, "The server has crashed.");
}
catch (Exception ex)
{
Diagnostics.ExceptionLogging.LogException(ex);
}
}
public static void EventSink_Shutdown(ShutdownEventArgs e)
{
try
{
World.Broadcast(0x35, true, "The server has shut down.");
}
catch (Exception ex)
{
Diagnostics.ExceptionLogging.LogException(ex);
}
}
}
}