summaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/Blocks/BlockHandler.cpp2
-rw-r--r--src/Simulator/RedstoneSimulator.cpp2
2 files changed, 2 insertions, 2 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;
diff --git a/src/Simulator/RedstoneSimulator.cpp b/src/Simulator/RedstoneSimulator.cpp
index 9328b9fcb..daf3aaead 100644
--- a/src/Simulator/RedstoneSimulator.cpp
+++ b/src/Simulator/RedstoneSimulator.cpp
@@ -630,7 +630,7 @@ void cRedstoneSimulator::HandleRedstoneRepeater(int a_BlockX, int a_BlockY, int
// Self not in list, add self to list
sRepeatersDelayList RC;
RC.a_BlockPos = Vector3i(a_BlockX, a_BlockY, a_BlockZ);
- RC.a_DelayTicks = ((a_Meta & 0xC) >> 0x2) + 1;
+ RC.a_DelayTicks = ((a_Meta & 0xC) >> 0x2); // Repeaters power off slower than they power on, so no +1. Why? No idea.
RC.a_ElapsedTicks = 0;
m_RepeatersDelayList.push_back(RC);
return;