summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h b/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
index dfb35a9bf..c48790388 100644
--- a/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
+++ b/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
@@ -38,14 +38,7 @@ public:
else
{
/** Check if block is not aligned in z direction */
- if (a_Offset.z == 0)
- {
- return false;
- }
- else
- {
- return true;
- }
+ return (a_Offset.z != 0);
}
case E_BLOCK_ACTIVE_COMPARATOR:
case E_BLOCK_INACTIVE_COMPARATOR: