diff options
author | XTZGZoReX <none@none> | 2010-03-10 02:02:24 +0100 |
---|---|---|
committer | XTZGZoReX <none@none> | 2010-03-10 02:02:24 +0100 |
commit | 54df245bb245ef02e936f9915054dc652f83a90c (patch) | |
tree | ccb8d73d6147c4910619b4ad1b19c229b5369564 /src/game/SharedDefines.h | |
parent | 41cf8c173e4c785cadc60aade407f0300bd19f7e (diff) |
* Update AiReaction enum.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SharedDefines.h')
-rw-r--r-- | src/game/SharedDefines.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/SharedDefines.h b/src/game/SharedDefines.h index d02794d9adb..83e7b9e08ea 100644 --- a/src/game/SharedDefines.h +++ b/src/game/SharedDefines.h @@ -2485,10 +2485,10 @@ enum PetDiet enum AiReaction { - AI_REACTION_UNK1 = 1, - AI_REACTION_AGGRO = 2, // trigger aggro sound to play, if defined in dbc - AI_REACTION_UNK3 = 3, // seen happen at polymorph, possible when AI not in control of self? - AI_REACTION_UNK4 = 4 + AI_REACTION_ALERT = 0, + AI_REACTION_FRIENDLY = 1, + AI_REACTION_HOSTILE = 2, // only currently existing reaction + AI_REACTION_AFRAID = 3 }; // Diminishing Returns Types |