diff options
author | Mattes D <github@xoft.cz> | 2013-12-11 07:36:31 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-12-11 07:36:31 +0100 |
commit | 858b03deb417df50b52dbd9453969f97a47d7807 (patch) | |
tree | d8593e82fc4acd6cdec295983e0076c6f4594e47 /src/Blocks | |
parent | Merge pull request #414 from worktycho/abortondeadlock (diff) | |
parent | Provides a possible fix for repeater timings (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/Blocks/BlockHandler.cpp | 2 |
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; |