summaryrefslogtreecommitdiffstats
path: root/src/Mobs
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-09-13 17:05:59 +0200
committerMattes D <github@xoft.cz>2014-09-13 17:05:59 +0200
commit5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b (patch)
treefcf2f5efe358c8c9ab7e3f54bc3a95a257e9f899 /src/Mobs
parentGittip is now Gratipay (diff)
parentAdded extra mushroom handler. (diff)
downloadcuberite-5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b.tar
cuberite-5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b.tar.gz
cuberite-5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b.tar.bz2
cuberite-5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b.tar.lz
cuberite-5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b.tar.xz
cuberite-5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b.tar.zst
cuberite-5b63a7fe9864a7b1afdf526a2b3b6d29ed991b9b.zip
Diffstat (limited to 'src/Mobs')
-rw-r--r--src/Mobs/Monster.cpp4
-rw-r--r--src/Mobs/Monster.h5
2 files changed, 9 insertions, 0 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp
index f7ee0b0c0..7e40794b1 100644
--- a/src/Mobs/Monster.cpp
+++ b/src/Mobs/Monster.cpp
@@ -89,6 +89,7 @@ cMonster::cMonster(const AString & a_ConfigName, eType a_MobType, const AString
, m_DropChanceBoots(0.085f)
, m_CanPickUpLoot(true)
, m_BurnsInDaylight(false)
+ , m_RelativeWalkSpeed(1.0)
{
if (!a_ConfigName.empty())
{
@@ -302,6 +303,9 @@ void cMonster::Tick(float a_Dt, cChunk & a_Chunk)
Distance *= 0.25f;
}
+ // Apply walk speed:
+ Distance *= m_RelativeWalkSpeed;
+
AddSpeedX(Distance.x);
AddSpeedZ(Distance.z);
diff --git a/src/Mobs/Monster.h b/src/Mobs/Monster.h
index cdbd26c09..ca3c04c23 100644
--- a/src/Mobs/Monster.h
+++ b/src/Mobs/Monster.h
@@ -138,6 +138,9 @@ public:
/// Sets whether the mob burns in daylight. Only evaluated at next burn-decision tick
void SetBurnsInDaylight(bool a_BurnsInDaylight) { m_BurnsInDaylight = a_BurnsInDaylight; }
+ double GetRelativeWalkSpeed(void) const { return m_RelativeWalkSpeed; } // tolua_export
+ void SetRelativeWalkSpeed(double a_WalkSpeed) { m_RelativeWalkSpeed = a_WalkSpeed; } // tolua_export
+
// Overridables to handle ageable mobs
virtual bool IsBaby (void) const { return false; }
virtual bool IsTame (void) const { return false; }
@@ -248,6 +251,8 @@ protected:
void HandleDaylightBurning(cChunk & a_Chunk);
bool m_BurnsInDaylight;
+ double m_RelativeWalkSpeed;
+
/** Adds a random number of a_Item between a_Min and a_Max to itemdrops a_Drops*/
void AddRandomDropItem(cItems & a_Drops, unsigned int a_Min, unsigned int a_Max, short a_Item, short a_ItemHealth = 0);