hopefully fix crashing

This commit is contained in:
Bluzume 2021-11-12 16:11:09 -05:00
parent 91a535a2cd
commit 0281573f69

View file

@ -184,7 +184,7 @@ namespace HISP.Server
Logger.DebugPrint("Sending keep-alive packet to " + LoggedinUser.Username);
byte[] updatePacket = PacketBuilder.CreateKeepAlive();
SendPacket(updatePacket);
if(keepAliveTimer != null)
if(!isDisconnecting && keepAliveTimer != null) // wtf how is this still a problem?
keepAliveTimer.Change(oneMinute, oneMinute);
}
private void minuteTimerTick(object state)