mirror of
https://github.com/mangosfour/server.git
synced 2025-12-20 16:37:04 +00:00
[10341] Fixed typo in .ticket code
This commit is contained in:
parent
8b99ac7298
commit
5c2fc55fe4
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue