diff options
Diffstat (limited to 'src/game/CreatureEventAI.h')
-rw-r--r-- | src/game/CreatureEventAI.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/CreatureEventAI.h b/src/game/CreatureEventAI.h index 7b9fe84453e..eb9a2a2dff5 100644 --- a/src/game/CreatureEventAI.h +++ b/src/game/CreatureEventAI.h @@ -102,6 +102,7 @@ enum EventAI_ActionType ACTION_T_DIE = 37, // No Params ACTION_T_ZONE_COMBAT_PULSE = 38, // No Params ACTION_T_CALL_FOR_HELP = 39, // Radius + ACTION_T_SET_SHEATH = 40, // Sheath (0-passive,1-melee,2-ranged) ACTION_T_SET_ACTIVE = 101, //Apply ACTION_T_SET_AGGRESSIVE = 102, //Apply @@ -369,6 +370,11 @@ struct CreatureEventAI_Action { uint32 radius; } call_for_help; + // ACTION_T_SET_SHEATH = 40 + struct + { + uint32 sheath; + } set_sheath; // RAW struct { |