diff --git a/src/game/SharedDefines.h b/src/game/SharedDefines.h index 35a4f9981..ca7600aba 100644 --- a/src/game/SharedDefines.h +++ b/src/game/SharedDefines.h @@ -2630,19 +2630,19 @@ enum MailResponseResult // in fact, these are also used elsewhere enum PetTameFailureReason { - PETTAME_INVALIDCREATURE = 0, - PETTAME_TOOMANY = 1, - PETTAME_CREATUREALREADYOWNED = 2, - PETTAME_NOTTAMEABLE = 3, - PETTAME_ANOTHERSUMMONACTIVE = 4, - PETTAME_UNITSCANTTAME = 5, - PETTAME_NOPETAVAILABLE = 6, // not used in taming - PETTAME_INTERNALERROR = 7, - PETTAME_TOOHIGHLEVEL = 8, - PETTAME_DEAD = 9, // not used in taming - PETTAME_NOTDEAD = 10, // not used in taming - PETTAME_CANTCONTROLEXOTIC = 11, // 3.x - PETTAME_UNKNOWNERROR = 12 + PETTAME_INVALIDCREATURE = 1, + PETTAME_TOOMANY = 2, + PETTAME_CREATUREALREADYOWNED = 3, + PETTAME_NOTTAMEABLE = 4, + PETTAME_ANOTHERSUMMONACTIVE = 5, + PETTAME_UNITSCANTTAME = 6, + PETTAME_NOPETAVAILABLE = 7, // not used in taming + PETTAME_INTERNALERROR = 8, + PETTAME_TOOHIGHLEVEL = 9, + PETTAME_DEAD = 10, // not used in taming + PETTAME_NOTDEAD = 11, // not used in taming + PETTAME_CANTCONTROLEXOTIC = 12, // 3.x + PETTAME_UNKNOWNERROR = 13 }; // we need to stick to 1 version or half of the stuff will work for someone diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 1f4e0eb26..6f5cfab91 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9320" + #define REVISION_NR "9321" #endif // __REVISION_NR_H__