summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-07-18 09:06:59 +0200
committerMattes D <github@xoft.cz>2014-07-18 09:06:59 +0200
commit35d0a0009e40c2154fe97719e04608a4323dea9f (patch)
tree50047a220ac10658d9cd6d2284282f83551d2731
parentMoved ChatColor.h out of defines where it was not needed (diff)
parentSkeletons should spawn with a bow in the hand. (diff)
downloadcuberite-35d0a0009e40c2154fe97719e04608a4323dea9f.tar
cuberite-35d0a0009e40c2154fe97719e04608a4323dea9f.tar.gz
cuberite-35d0a0009e40c2154fe97719e04608a4323dea9f.tar.bz2
cuberite-35d0a0009e40c2154fe97719e04608a4323dea9f.tar.lz
cuberite-35d0a0009e40c2154fe97719e04608a4323dea9f.tar.xz
cuberite-35d0a0009e40c2154fe97719e04608a4323dea9f.tar.zst
cuberite-35d0a0009e40c2154fe97719e04608a4323dea9f.zip
-rw-r--r--src/Mobs/Skeleton.cpp15
-rw-r--r--src/Mobs/Skeleton.h2
2 files changed, 17 insertions, 0 deletions
diff --git a/src/Mobs/Skeleton.cpp b/src/Mobs/Skeleton.cpp
index 0641a3d57..2f57bedeb 100644
--- a/src/Mobs/Skeleton.cpp
+++ b/src/Mobs/Skeleton.cpp
@@ -4,6 +4,7 @@
#include "Skeleton.h"
#include "../World.h"
#include "../Entities/ArrowEntity.h"
+#include "ClientHandle.h"
@@ -90,3 +91,17 @@ void cSkeleton::Attack(float a_Dt)
m_AttackInterval = 0.0;
}
}
+
+
+
+
+
+void cSkeleton::SpawnOn(cClientHandle & a_ClientHandle)
+{
+ super::SpawnOn(a_ClientHandle);
+ a_ClientHandle.SendEntityEquipment(*this, 0, cItem(E_ITEM_BOW));
+}
+
+
+
+
diff --git a/src/Mobs/Skeleton.h b/src/Mobs/Skeleton.h
index 8f31b42e1..229462d63 100644
--- a/src/Mobs/Skeleton.h
+++ b/src/Mobs/Skeleton.h
@@ -20,6 +20,8 @@ public:
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
virtual void MoveToPosition(const Vector3f & a_Position) override;
virtual void Attack(float a_Dt) override;
+ virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
+
bool IsWither(void) const { return m_bIsWither; };
private: