aboutsummaryrefslogtreecommitdiff
path: root/src/game/NullCreatureAI.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/NullCreatureAI.h')
-rw-r--r--src/game/NullCreatureAI.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/game/NullCreatureAI.h b/src/game/NullCreatureAI.h
index 821b42f7e76..a9814c9c5e0 100644
--- a/src/game/NullCreatureAI.h
+++ b/src/game/NullCreatureAI.h
@@ -32,8 +32,6 @@ class TRINITY_DLL_DECL PassiveAI : public CreatureAI
void MoveInLineOfSight(Unit *) {}
void AttackStart(Unit *) {}
- bool IsVisible(Unit *) const { return false; }
-
void UpdateAI(const uint32);
static int Permissible(const Creature *) { return PERMIT_BASE_IDLE; }
};
@@ -43,6 +41,7 @@ class TRINITY_DLL_DECL NullCreatureAI : public PassiveAI
public:
NullCreatureAI(Creature *c) : PassiveAI(c) {}
+ void UpdateAI(const uint32) {}
void EnterEvadeMode() {}
};