mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
fix crashes
This commit is contained in:
parent
b4350d1e5f
commit
0b6359f1dd
3 changed files with 6 additions and 3 deletions
|
@ -51,7 +51,7 @@ namespace HISP.Game.Chat
|
|||
client.LoggedinUser.TrackedItems.GetTrackedItem(Tracking.TrackableItem.GameUpdates).Count++;
|
||||
}
|
||||
|
||||
client.Kick("Server was closed by an Administrator.");
|
||||
client.Kick("%SHUTDOWN Command Executed by an Administrator (Probably a server restart)");
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -60,6 +60,8 @@ namespace HISP.Game.Chat
|
|||
byte[] chatPacket = PacketBuilder.CreateChat(Messages.FormatAdminCommandCompleteMessage(message.Substring(1)), PacketBuilder.CHAT_BOTTOM_LEFT);
|
||||
user.LoggedinClient.SendPacket(chatPacket);
|
||||
Program.ShuttingDown = true;
|
||||
Thread.Sleep(1000); // give it a few seconds to shut down, if it doesnt force exit
|
||||
Environment.Exit(0);
|
||||
return true;
|
||||
}
|
||||
public static bool Give(string message, string[] args, User user)
|
||||
|
|
|
@ -218,7 +218,7 @@ namespace HISP.Player
|
|||
foreach (ItemInstance itm in item)
|
||||
{
|
||||
Trader.Inventory.Remove(itm);
|
||||
OtherTrade.Trader.Inventory.Add(itm);
|
||||
OtherTrade.Trader.Inventory.AddIgnoringFull(itm);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -181,7 +181,8 @@ namespace HISP.Server
|
|||
Logger.DebugPrint("Sending keep-alive packet to " + LoggedinUser.Username);
|
||||
byte[] updatePacket = PacketBuilder.CreateKeepAlive();
|
||||
SendPacket(updatePacket);
|
||||
keepAliveTimer.Change(oneMinute, oneMinute);
|
||||
if(keepAliveTimer != null)
|
||||
keepAliveTimer.Change(oneMinute, oneMinute);
|
||||
}
|
||||
private void minuteTimerTick(object state)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue