diff options
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) { } |