fix: Moves many EventSinks out of core. (#1783)

This commit is contained in:
Marcelo Paez Sequeira 2024-05-21 14:02:30 -03:00 committed by GitHub
parent 1cb798d807
commit 00908d030f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
45 changed files with 133 additions and 276 deletions

View file

@ -83,11 +83,6 @@ namespace Server.Misc
new(1240, 1003)
};
public static void Initialize()
{
EventSink.Login += EventSink_Login;
}
private static bool IsStranded(Mobile from)
{
var map = from.Map;
@ -117,7 +112,7 @@ namespace Server.Misc
return false;
}
public static void EventSink_Login(Mobile from)
public static void OnLogin(Mobile from)
{
if (!IsStranded(from))
{