mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
[9321] Correct enum PetTameFailureReason
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
f8f4680cb7
commit
4a3081e7d5
2 changed files with 14 additions and 14 deletions
|
|
@ -2630,19 +2630,19 @@ enum MailResponseResult
|
||||||
// in fact, these are also used elsewhere
|
// in fact, these are also used elsewhere
|
||||||
enum PetTameFailureReason
|
enum PetTameFailureReason
|
||||||
{
|
{
|
||||||
PETTAME_INVALIDCREATURE = 0,
|
PETTAME_INVALIDCREATURE = 1,
|
||||||
PETTAME_TOOMANY = 1,
|
PETTAME_TOOMANY = 2,
|
||||||
PETTAME_CREATUREALREADYOWNED = 2,
|
PETTAME_CREATUREALREADYOWNED = 3,
|
||||||
PETTAME_NOTTAMEABLE = 3,
|
PETTAME_NOTTAMEABLE = 4,
|
||||||
PETTAME_ANOTHERSUMMONACTIVE = 4,
|
PETTAME_ANOTHERSUMMONACTIVE = 5,
|
||||||
PETTAME_UNITSCANTTAME = 5,
|
PETTAME_UNITSCANTTAME = 6,
|
||||||
PETTAME_NOPETAVAILABLE = 6, // not used in taming
|
PETTAME_NOPETAVAILABLE = 7, // not used in taming
|
||||||
PETTAME_INTERNALERROR = 7,
|
PETTAME_INTERNALERROR = 8,
|
||||||
PETTAME_TOOHIGHLEVEL = 8,
|
PETTAME_TOOHIGHLEVEL = 9,
|
||||||
PETTAME_DEAD = 9, // not used in taming
|
PETTAME_DEAD = 10, // not used in taming
|
||||||
PETTAME_NOTDEAD = 10, // not used in taming
|
PETTAME_NOTDEAD = 11, // not used in taming
|
||||||
PETTAME_CANTCONTROLEXOTIC = 11, // 3.x
|
PETTAME_CANTCONTROLEXOTIC = 12, // 3.x
|
||||||
PETTAME_UNKNOWNERROR = 12
|
PETTAME_UNKNOWNERROR = 13
|
||||||
};
|
};
|
||||||
|
|
||||||
// we need to stick to 1 version or half of the stuff will work for someone
|
// we need to stick to 1 version or half of the stuff will work for someone
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9320"
|
#define REVISION_NR "9321"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue