Core/Mail: Updated mailbox limit to 8.3 value
Port From (https://github.com/TrinityCore/TrinityCore/commit/d7524928e57d2555c5351a6e3d9c61e098b5c976)
This commit is contained in:
@@ -580,8 +580,8 @@ namespace Game
|
|||||||
if (m.state == MailState.Deleted || curTime < m.deliver_time)
|
if (m.state == MailState.Deleted || curTime < m.deliver_time)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// max. 50 mails can be sent
|
// max. 100 mails can be sent
|
||||||
if (response.Mails.Count < 50)
|
if (response.Mails.Count < 100)
|
||||||
response.Mails.Add(new MailListEntry(m, player));
|
response.Mails.Add(new MailListEntry(m, player));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user