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 | |
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 |
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | src/Mobs/Monster.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2392d8523..8b10525da 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -23,6 +23,7 @@ Sxw1212 Taugeshtu tigerw (Tiger Wang) tonibm19 +UltraCoderRU worktycho xoft 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); |