diff options
author | Bond-009 <Bond-009@users.noreply.github.com> | 2017-04-29 01:15:47 +0200 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2017-04-29 01:15:47 +0200 |
commit | 2a129b01aa02bb6baf7f2c4ff9d8f2c490ba69a0 (patch) | |
tree | 71fa4f90a391c279b75d88de529b2985c28c323d /src/Simulator | |
parent | Build Lua in C++ mode, use exceptions for error-raising. (#3680) (diff) | |
download | cuberite-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 |
Diffstat (limited to 'src/Simulator')
-rw-r--r-- | src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.cpp | 5 |
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: |