diff options
author | Bond-009 <bond.009@outlook.com> | 2018-05-06 19:07:34 +0200 |
---|---|---|
committer | peterbell10 <peterbell10@live.co.uk> | 2018-05-06 19:07:34 +0200 |
commit | b9fdaf8a942ea2f79e48e3f735ba8916f3364e70 (patch) | |
tree | 41c6f10550a4e606d33ac84fe3968b69875aa1d4 /src/Mobs/Enderman.h | |
parent | Generate cacti and sugarcane with different heights (#4137) (diff) | |
download | cuberite-b9fdaf8a942ea2f79e48e3f735ba8916f3364e70.tar cuberite-b9fdaf8a942ea2f79e48e3f735ba8916f3364e70.tar.gz cuberite-b9fdaf8a942ea2f79e48e3f735ba8916f3364e70.tar.bz2 cuberite-b9fdaf8a942ea2f79e48e3f735ba8916f3364e70.tar.lz cuberite-b9fdaf8a942ea2f79e48e3f735ba8916f3364e70.tar.xz cuberite-b9fdaf8a942ea2f79e48e3f735ba8916f3364e70.tar.zst cuberite-b9fdaf8a942ea2f79e48e3f735ba8916f3364e70.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Enderman.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Mobs/Enderman.h b/src/Mobs/Enderman.h index d8731b709..4f3f26119 100644 --- a/src/Mobs/Enderman.h +++ b/src/Mobs/Enderman.h @@ -24,8 +24,8 @@ public: virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; bool IsScreaming(void) const {return m_bIsScreaming; } - BLOCKTYPE GetCarriedBlock(void) const {return CarriedBlock; } - NIBBLETYPE GetCarriedMeta(void) const {return CarriedMeta; } + BLOCKTYPE GetCarriedBlock(void) const {return m_CarriedBlock; } + NIBBLETYPE GetCarriedMeta(void) const {return m_CarriedMeta; } /** Returns if the current sky light level is sufficient for the enderman to become aggravated */ bool CheckLight(void); @@ -33,7 +33,7 @@ public: private: bool m_bIsScreaming; - BLOCKTYPE CarriedBlock; - NIBBLETYPE CarriedMeta; + BLOCKTYPE m_CarriedBlock; + NIBBLETYPE m_CarriedMeta; } ; |