diff options
author | Aiden Neill <aidenneill@gmail.com> | 2020-12-19 02:42:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 02:42:34 +0100 |
commit | a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876 (patch) | |
tree | 926f6dbc58ba7decf902d4f86bc72690e30337a3 /src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.h | |
parent | Added dimension check to nether portal (#5068) (diff) | |
download | cuberite-a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876.tar cuberite-a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876.tar.gz cuberite-a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876.tar.bz2 cuberite-a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876.tar.lz cuberite-a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876.tar.xz cuberite-a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876.tar.zst cuberite-a7e9f88ff3dba3b99b58d2bf9ed2350e6154d876.zip |
Diffstat (limited to 'src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.h')
-rw-r--r-- | src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.h b/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.h index cf08a672f..e8cd4bf5d 100644 --- a/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.h +++ b/src/Simulator/IncrementalRedstoneSimulator/IncrementalRedstoneSimulator.h @@ -25,6 +25,7 @@ private: switch (a_Block) // Call the appropriate simulator for the entry's block type { case E_BLOCK_DAYLIGHT_SENSOR: + case E_BLOCK_INVERTED_DAYLIGHT_SENSOR: case E_BLOCK_TRIPWIRE_HOOK: case E_BLOCK_WOODEN_PRESSURE_PLATE: case E_BLOCK_STONE_PRESSURE_PLATE: @@ -58,6 +59,7 @@ private: case E_BLOCK_HEAVY_WEIGHTED_PRESSURE_PLATE: case E_BLOCK_HOPPER: case E_BLOCK_INACTIVE_COMPARATOR: + case E_BLOCK_INVERTED_DAYLIGHT_SENSOR: case E_BLOCK_IRON_DOOR: case E_BLOCK_IRON_TRAPDOOR: case E_BLOCK_JUNGLE_DOOR: |