Core/Mail: Updated mailbox limit to 8.3 value

Port From (https://github.com/TrinityCore/TrinityCore/commit/d7524928e57d2555c5351a6e3d9c61e098b5c976)
This commit is contained in:
hondacrx
2020-04-26 00:55:23 -04:00
parent d450f6db3d
commit a229f29a27
+2 -2
View File
@@ -580,8 +580,8 @@ namespace Game
if (m.state == MailState.Deleted || curTime < m.deliver_time)
continue;
// max. 50 mails can be sent
if (response.Mails.Count < 50)
// max. 100 mails can be sent
if (response.Mails.Count < 100)
response.Mails.Add(new MailListEntry(m, player));
}