diff options
Diffstat (limited to 'src/game/Creature.cpp')
| -rw-r--r-- | src/game/Creature.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index fa710a41be3..e9db1493e0c 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -2288,6 +2288,9 @@ bool Creature::LoadCreaturesAddon(bool reload)      if (cainfo->move_flags != 0)          SetUnitMovementFlags(cainfo->move_flags); +    if (cainfo->move_flags & (MOVEMENTFLAG_FLY_MODE | MOVEMENTFLAG_FLYING)) +        sLog.outErrorDb("Creature (GUID: %u Entry: %u) has improper `moveflags` value in `creature_template_addon`. Use `InhabitType` = 4 (Flying) in `creature_template`, not MOVEMENTFLAG_FLY_MODE or MOVEMENTFLAG_FLYING in `creature_addon`.",GetGUIDLow(),GetEntry()); +      //Load Path      if (cainfo->path_id != 0)          m_path_id = cainfo->path_id;  | 
