Make commands more accurate

This commit is contained in:
Li 2022-05-07 12:58:22 +12:00
parent 997be8573d
commit 55c0f29914
14 changed files with 415 additions and 342 deletions

View file

@ -3,6 +3,7 @@ using HISP.Game.Horse;
using HISP.Game.Items;
using HISP.Game.Services;
using HISP.Game.SwfModules;
using HISP.Game.Chat;
using HISP.Security;
using System;
using System.Diagnostics;
@ -13,7 +14,6 @@ namespace HISP.Server
{
// "Entry Point"
private static void defaultOnShutdownCallback()
{
Process.GetCurrentProcess().Close();
@ -52,6 +52,7 @@ namespace HISP.Server
Auction.LoadAllAuctionRooms();
Item.DoSpecialCases();
Command.RegisterCommands();
GameServer.StartServer();
}