summaryrefslogtreecommitdiffstats
path: root/src/Mobs
diff options
context:
space:
mode:
authorKirill Kirilenko <root@ultracoder.ru>2014-02-01 17:38:53 +0100
committerKirill Kirilenko <root@ultracoder.ru>2014-02-01 17:38:53 +0100
commit2a52b390c001406540627293e6b425ff709e7250 (patch)
tree44590598539c23f376e0d80da776d8233eecef89 /src/Mobs
parentFixed teleport to air, if owner is flying. (diff)
downloadcuberite-2a52b390c001406540627293e6b425ff709e7250.tar
cuberite-2a52b390c001406540627293e6b425ff709e7250.tar.gz
cuberite-2a52b390c001406540627293e6b425ff709e7250.tar.bz2
cuberite-2a52b390c001406540627293e6b425ff709e7250.tar.lz
cuberite-2a52b390c001406540627293e6b425ff709e7250.tar.xz
cuberite-2a52b390c001406540627293e6b425ff709e7250.tar.zst
cuberite-2a52b390c001406540627293e6b425ff709e7250.zip
Diffstat (limited to 'src/Mobs')
-rw-r--r--src/Mobs/Monster.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp
index 42c7d2899..283ef36e6 100644
--- a/src/Mobs/Monster.cpp
+++ b/src/Mobs/Monster.cpp
@@ -276,7 +276,7 @@ void cMonster::Tick(float a_Dt, cChunk & a_Chunk)
{
Distance.y = 0;
Distance.Normalize();
- Distance *= 3;
+ Distance *= 5;
SetSpeedX(Distance.x);
SetSpeedZ(Distance.z);