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.cpp | |
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 'src/Mobs/Enderman.cpp')
-rw-r--r-- | src/Mobs/Enderman.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/Enderman.cpp b/src/Mobs/Enderman.cpp index 01e13713d..71ba4e79a 100644 --- a/src/Mobs/Enderman.cpp +++ b/src/Mobs/Enderman.cpp @@ -75,8 +75,8 @@ protected: cEnderman::cEnderman(void) : super("Enderman", mtEnderman, "entity.endermen.hurt", "entity.endermen.death", 0.5, 2.9), m_bIsScreaming(false), - CarriedBlock(E_BLOCK_AIR), - CarriedMeta(0) + m_CarriedBlock(E_BLOCK_AIR), + m_CarriedMeta(0) { } |