diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2017-09-02 18:51:32 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2017-09-02 18:51:32 +0200 |
commit | afb65224879ccced98c5a3699f7732dc37fe3f40 (patch) | |
tree | e2b95d4acd2b4516f8244abd0e049a33aed6a293 /src/Mobs/Behaviors/BehaviorAggressive.h | |
parent | d (diff) | |
download | cuberite-afb65224879ccced98c5a3699f7732dc37fe3f40.tar cuberite-afb65224879ccced98c5a3699f7732dc37fe3f40.tar.gz cuberite-afb65224879ccced98c5a3699f7732dc37fe3f40.tar.bz2 cuberite-afb65224879ccced98c5a3699f7732dc37fe3f40.tar.lz cuberite-afb65224879ccced98c5a3699f7732dc37fe3f40.tar.xz cuberite-afb65224879ccced98c5a3699f7732dc37fe3f40.tar.zst cuberite-afb65224879ccced98c5a3699f7732dc37fe3f40.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Behaviors/BehaviorAggressive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Behaviors/BehaviorAggressive.h b/src/Mobs/Behaviors/BehaviorAggressive.h index 434565a65..923d646e0 100644 --- a/src/Mobs/Behaviors/BehaviorAggressive.h +++ b/src/Mobs/Behaviors/BehaviorAggressive.h @@ -9,7 +9,7 @@ class cBehaviorAggressive; /** The mob is agressive toward specific mobtypes, or toward the player. This Behavior has a dependency on BehaviorAttacker. */ -typedef std::function<bool(cBehaviorAggressive & a_Behavior, cMonster & a_Monster)> ShouldBeAggressiveFunction; +typedef std::function<bool(cBehaviorAggressive & a_Behavior, cMonster & a_Monster, cChunk & a_Chunk)> ShouldBeAggressiveFunction; class cBehaviorAggressive : public cBehavior { |