[10341] Fixed typo in .ticket code

This commit is contained in:
VladimirMangos 2010-08-11 03:15:11 +04:00
parent 8b99ac7298
commit 5c2fc55fe4
2 changed files with 2 additions and 2 deletions

View file

@ -2699,7 +2699,7 @@ bool ChatHandler::HandleTicketCommand(char* args)
// ticket #num // ticket #num
uint32 num; uint32 num;
if (!ExtractUInt32(&px, num)) if (ExtractUInt32(&px, num))
{ {
if (num == 0) if (num == 0)
return false; return false;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "10340" #define REVISION_NR "10341"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__