Move mod loading to server entry point

This commit is contained in:
Li 2022-05-07 13:30:51 +12:00
parent 518018e54e
commit 412430ec76
3 changed files with 11 additions and 6 deletions

View file

@ -7,7 +7,8 @@ using HISP.Game.Chat;
using HISP.Security;
using System;
using System.Diagnostics;
using HISP.Modding;
namespace HISP.Server
{
public static class Entry
@ -27,10 +28,12 @@ namespace HISP.Server
}
public static void Start()
{
#if (!DEBUG)
{
#if (!DEBUG)
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
#endif
#endif
ModLoader.ReloadModsFromFilesystem();
Console.Title = ServerVersion.GetBuildString();
ConfigReader.OpenConfig();

View file

@ -8277,8 +8277,6 @@ namespace HISP.Server
minuteTimer = new Timer(new TimerCallback(onMinuteTick), null, oneMinute, oneMinute);
Logger.InfoPrint("Binding to ip: " + ConfigReader.BindIP + " On port: " + ConfigReader.Port.ToString());
// Load all/any mods
ModLoader.ReloadModsFromFilesystem();
SocketAsyncEventArgs e = new SocketAsyncEventArgs();
e.Completed += GameClient.CreateClient;

View file

@ -7,6 +7,7 @@ using HISP.Game.Horse;
using HISP.Game.Items;
using HISP.Game.Services;
using HISP.Game.SwfModules;
using HISP.Modding;
using HISP.Security;
using HISP.Server;
using HTTP;
@ -74,6 +75,8 @@ namespace HISP.Noobs
BaseDir = Path.Combine(Environment.GetEnvironmentVariable("APPDATA"), "HISP", "N00BS");
Directory.CreateDirectory(BaseDir);
ModLoader.ReloadModsFromFilesystem();
// Start Web Server
try
{
@ -110,6 +113,7 @@ namespace HISP.Noobs
ConfigReader.CrossDomainPolicyFile = Path.Combine(BaseDir, "CrossDomainPolicy.xml");
ConfigReader.DatabaseName = Path.Combine(BaseDir, "game1.db");
IncrementProgress();
Database.OpenDatabase();
IncrementProgress();