summaryrefslogtreecommitdiffstats
path: root/src/Blocks
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-12-11 07:36:31 +0100
committerMattes D <github@xoft.cz>2013-12-11 07:36:31 +0100
commit858b03deb417df50b52dbd9453969f97a47d7807 (patch)
treed8593e82fc4acd6cdec295983e0076c6f4594e47 /src/Blocks
parentMerge pull request #414 from worktycho/abortondeadlock (diff)
parentProvides a possible fix for repeater timings (diff)
downloadcuberite-858b03deb417df50b52dbd9453969f97a47d7807.tar
cuberite-858b03deb417df50b52dbd9453969f97a47d7807.tar.gz
cuberite-858b03deb417df50b52dbd9453969f97a47d7807.tar.bz2
cuberite-858b03deb417df50b52dbd9453969f97a47d7807.tar.lz
cuberite-858b03deb417df50b52dbd9453969f97a47d7807.tar.xz
cuberite-858b03deb417df50b52dbd9453969f97a47d7807.tar.zst
cuberite-858b03deb417df50b52dbd9453969f97a47d7807.zip
Diffstat (limited to 'src/Blocks')
-rw-r--r--src/Blocks/BlockHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Blocks/BlockHandler.cpp b/src/Blocks/BlockHandler.cpp
index fde6bd803..d377823f7 100644
--- a/src/Blocks/BlockHandler.cpp
+++ b/src/Blocks/BlockHandler.cpp
@@ -375,7 +375,7 @@ void cBlockHandler::DropBlock(cWorld * a_World, cEntity * a_Digger, int a_BlockX
MicroY = a_BlockY + 0.5;
MicroZ = a_BlockZ + 0.5;
- // Add random offset second (this causes pickups to spawn inside blocks most times, it's a little buggy)
+ // Add random offset second
MicroX += r1.rand(1) - 0.5;
MicroZ += r1.rand(1) - 0.5;