Core/Mail: Update max mail id cap

Port From (https://github.com/TrinityCore/TrinityCore/commit/b6cd49c34d4d02b41ced58b87103123a1532b56c)
This commit is contained in:
hondacrx
2023-01-30 10:16:53 -05:00
parent c556c2a875
commit 1ebd81dcd7
+1 -1
View File
@@ -10406,7 +10406,7 @@ namespace Game
}
public ulong GenerateMailID()
{
if (_mailId >= 0xFFFFFFFE)
if (_mailId >= 0xFFFFFFFFFFFFFFFE)
{
Log.outError(LogFilter.Server, "Mail ids overflow!! Can't continue, shutting down server. ");
Global.WorldMgr.StopNow();