[7385] Fixed mail price calculation Author: VladimirMangos

--HG--
branch : trunk
This commit is contained in:
megamage
2009-03-06 15:22:19 -06:00
parent 50b3095312
commit 93113cd3cc
2 changed files with 2 additions and 4 deletions

View File

@@ -125,9 +125,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__