mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[9562] Another update of AIReaction enum (and comments).
This commit is contained in:
parent
8b3da285ac
commit
d490532a55
2 changed files with 6 additions and 5 deletions
|
|
@ -2407,10 +2407,11 @@ enum PetDiet
|
|||
|
||||
enum AiReaction
|
||||
{
|
||||
AI_REACTION_ALERT = 0,
|
||||
AI_REACTION_FRIENDLY = 1,
|
||||
AI_REACTION_HOSTILE = 2, // only currently existing reaction
|
||||
AI_REACTION_AFRAID = 3
|
||||
AI_REACTION_ALERT = 0, // pre-aggro (used in client packet handler)
|
||||
AI_REACTION_FRIENDLY = 1, // (NOT used in client packet handler)
|
||||
AI_REACTION_HOSTILE = 2, // sent on every attack, triggers aggro sound (used in client packet handler)
|
||||
AI_REACTION_AFRAID = 3, // seen for polymorph (when AI not in control of self?) (NOT used in client packet handler)
|
||||
AI_REACTION_DESTROY = 4, // used on object destroy (NOT used in client packet handler)
|
||||
};
|
||||
|
||||
// Diminishing Returns Types
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "9561"
|
||||
#define REVISION_NR "9562"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue