diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-01-22 19:53:34 +0100 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-01-22 19:53:34 +0100 |
commit | 30b95fcc4ec8465a8fb076fbb88ac6835a832a19 (patch) | |
tree | 44fa8a18db08ae8bb34d43efba9a800f47d135cd /src/Mobs/Enderman.h | |
parent | Merge pull request #2901 from birkett/servicefix (diff) | |
parent | Spiders now friendly at daylight, new cChunk functions (diff) | |
download | cuberite-30b95fcc4ec8465a8fb076fbb88ac6835a832a19.tar cuberite-30b95fcc4ec8465a8fb076fbb88ac6835a832a19.tar.gz cuberite-30b95fcc4ec8465a8fb076fbb88ac6835a832a19.tar.bz2 cuberite-30b95fcc4ec8465a8fb076fbb88ac6835a832a19.tar.lz cuberite-30b95fcc4ec8465a8fb076fbb88ac6835a832a19.tar.xz cuberite-30b95fcc4ec8465a8fb076fbb88ac6835a832a19.tar.zst cuberite-30b95fcc4ec8465a8fb076fbb88ac6835a832a19.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Enderman.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/Enderman.h b/src/Mobs/Enderman.h index 8ccbf2ce7..54859c2cd 100644 --- a/src/Mobs/Enderman.h +++ b/src/Mobs/Enderman.h @@ -11,14 +11,14 @@ class cEnderman : public cPassiveAggressiveMonster { typedef cPassiveAggressiveMonster super; - + public: cEnderman(void); CLASS_PROTODEF(cEnderman) virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; - virtual void CheckEventSeePlayer(void) override; + virtual void CheckEventSeePlayer(cChunk & a_Chunk) override; virtual void CheckEventLostPlayer(void) override; virtual void EventLosePlayer(void) override; virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; |