Skip to content

Commit

Permalink
[10341] Fixed typo in .ticket code
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMangos committed Aug 10, 2010
1 parent 13829dd commit a493013
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/Level2.cpp
Expand Up @@ -2699,7 +2699,7 @@ bool ChatHandler::HandleTicketCommand(char* args)

// ticket #num
uint32 num;
if (!ExtractUInt32(&px, num))
if (ExtractUInt32(&px, num))
{
if (num == 0)
return false;
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10340"
#define REVISION_NR "10341"
#endif // __REVISION_NR_H__

0 comments on commit a493013

Please sign in to comment.