diff options
author | andrew <xdotftw@gmail.com> | 2014-03-25 10:13:27 +0100 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-03-25 10:13:27 +0100 |
commit | ba4216641120ec2f49464ed0b136af3198d48f89 (patch) | |
tree | 727d0a45024b8c25152379d7c5e28339c40006ff /src/Mobs | |
parent | Protocol: Wither metadata (diff) | |
download | cuberite-ba4216641120ec2f49464ed0b136af3198d48f89.tar cuberite-ba4216641120ec2f49464ed0b136af3198d48f89.tar.gz cuberite-ba4216641120ec2f49464ed0b136af3198d48f89.tar.bz2 cuberite-ba4216641120ec2f49464ed0b136af3198d48f89.tar.lz cuberite-ba4216641120ec2f49464ed0b136af3198d48f89.tar.xz cuberite-ba4216641120ec2f49464ed0b136af3198d48f89.tar.zst cuberite-ba4216641120ec2f49464ed0b136af3198d48f89.zip |
Diffstat (limited to 'src/Mobs')
-rw-r--r-- | src/Mobs/Wither.cpp | 14 | ||||
-rw-r--r-- | src/Mobs/Wither.h | 1 |
2 files changed, 13 insertions, 2 deletions
diff --git a/src/Mobs/Wither.cpp b/src/Mobs/Wither.cpp index 790f127f2..39dc6aab9 100644 --- a/src/Mobs/Wither.cpp +++ b/src/Mobs/Wither.cpp @@ -13,8 +13,6 @@ cWither::cWither(void) : m_InvulnerableTicks(220) { SetMaxHealth(300); - - SetHealth(GetMaxHealth() / 3); } @@ -30,6 +28,18 @@ bool cWither::IsArmored(void) const +bool cWither::Initialize(cWorld * a_World) override +{ + // Set health before BroadcastSpawnEntity() + SetHealth(GetMaxHealth() / 3); + + return super::Initialize(a_World); +} + + + + + void cWither::DoTakeDamage(TakeDamageInfo & a_TDI) { if (a_TDI.DamageType == dtDrowning) diff --git a/src/Mobs/Wither.h b/src/Mobs/Wither.h index 52666a190..bc78bfaad 100644 --- a/src/Mobs/Wither.h +++ b/src/Mobs/Wither.h @@ -25,6 +25,7 @@ public: bool IsArmored(void) const; // cEntity overrides + virtual bool Initialize(cWorld * a_World) override; virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override; virtual void Tick(float a_Dt, cChunk & a_Chunk) override; |