diff options
author | Mattes D <github@xoft.cz> | 2014-09-25 20:45:54 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-25 20:45:54 +0200 |
commit | e751f4ffe3856134f4a8c49be31c41b94815322f (patch) | |
tree | 361d520144c3cb7a9e6fa37da6ee4ae65afcbd6b /src/Mobs | |
parent | Protocol 1.8: Handling packet compression properly. (diff) | |
parent | Comment style (diff) | |
download | cuberite-e751f4ffe3856134f4a8c49be31c41b94815322f.tar cuberite-e751f4ffe3856134f4a8c49be31c41b94815322f.tar.gz cuberite-e751f4ffe3856134f4a8c49be31c41b94815322f.tar.bz2 cuberite-e751f4ffe3856134f4a8c49be31c41b94815322f.tar.lz cuberite-e751f4ffe3856134f4a8c49be31c41b94815322f.tar.xz cuberite-e751f4ffe3856134f4a8c49be31c41b94815322f.tar.zst cuberite-e751f4ffe3856134f4a8c49be31c41b94815322f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Villager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Mobs/Villager.cpp b/src/Mobs/Villager.cpp index 1cdac7c74..0efd5501e 100644 --- a/src/Mobs/Villager.cpp +++ b/src/Mobs/Villager.cpp @@ -109,11 +109,11 @@ void cVillager::HandleFarmerPrepareFarmCrops() Surrounding.Read( m_World, (int) GetPosX() - 5, - (int) GetPosX() + 5, + (int) GetPosX() + 6, (int) GetPosY() - 3, - (int) GetPosY() + 3, + (int) GetPosY() + 4, (int) GetPosZ() - 5, - (int) GetPosZ() + 5 + (int) GetPosZ() + 6 ); for (int I = 0; I < 5; I++) |