[7385] Fixed mail price calculation broken recently by me.

This commit is contained in:
VladimirMangos 2009-03-06 04:25:14 +03:00
parent c18d20782b
commit 649653956a
2 changed files with 2 additions and 4 deletions

View file

@ -122,9 +122,7 @@ void WorldSession::HandleSendMail(WorldPacket & recv_data )
return;
}
uint32 cost = money + 30;
if (items_count)
cost = 30 * items_count;
uint32 cost = items_count ? 30 * items_count : 30; // price hardcoded in client
uint32 reqmoney = cost + money;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7384"
#define REVISION_NR "7385"
#endif // __REVISION_NR_H__