diff options
author | Kirill Kirilenko <root@ultracoder.ru> | 2014-02-01 17:38:53 +0100 |
---|---|---|
committer | Kirill Kirilenko <root@ultracoder.ru> | 2014-02-01 17:38:53 +0100 |
commit | 2a52b390c001406540627293e6b425ff709e7250 (patch) | |
tree | 44590598539c23f376e0d80da776d8233eecef89 /src/Mobs/Monster.cpp | |
parent | Fixed teleport to air, if owner is flying. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/Mobs/Monster.cpp | 2 |
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); |