summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBond-009 <Bond-009@users.noreply.github.com>2017-04-29 01:15:47 +0200
committerworktycho <work.tycho@gmail.com>2017-04-29 01:15:47 +0200
commit2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0 (patch)
tree71fa4f90a391c279b75d88de529b2985c28c323d
parentBuild Lua in C++ mode, use exceptions for error-raising. (#3680) (diff)
downloadcuberite-2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0.tar
cuberite-2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0.tar.gz
cuberite-2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0.tar.bz2
cuberite-2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0.tar.lz
cuberite-2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0.tar.xz
cuberite-2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0.tar.zst
cuberite-2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0.zip
-rw-r--r--src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.cpp b/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.cpp
index 4669dbd2c..0ca7afbf3 100644
--- a/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.cpp
+++ b/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.cpp
@@ -49,8 +49,13 @@ std::unique_ptr<cRedstoneHandler> cIncrementalRedstoneSimulator::CreateComponent
case E_BLOCK_STONE_PRESSURE_PLATE:
case E_BLOCK_WOODEN_PRESSURE_PLATE: return cpp14::make_unique<cPressurePlateHandler>(a_World);
+ case E_BLOCK_ACACIA_FENCE_GATE:
+ case E_BLOCK_BIRCH_FENCE_GATE:
+ case E_BLOCK_DARK_OAK_FENCE_GATE:
case E_BLOCK_FENCE_GATE:
case E_BLOCK_IRON_TRAPDOOR:
+ case E_BLOCK_JUNGLE_FENCE_GATE:
+ case E_BLOCK_SPRUCE_FENCE_GATE:
case E_BLOCK_TRAPDOOR: return cpp14::make_unique<cSmallGateHandler>(a_World);
case E_BLOCK_REDSTONE_LAMP_OFF: