diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-06-18 22:22:53 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-06-18 22:22:53 +0200 |
commit | 35a4aa419c3ee09f50cb9b397e76d87a13f9997f (patch) | |
tree | d40ae19252acd6308b7fe4c4a1c5f5a9979ed8de /src/Simulator/IncrementalRedstoneSimulator.h | |
parent | Merge pull request #1045 from Howaner/GlobalFixes (diff) | |
parent | FIxed second weird enum (diff) | |
download | cuberite-35a4aa419c3ee09f50cb9b397e76d87a13f9997f.tar cuberite-35a4aa419c3ee09f50cb9b397e76d87a13f9997f.tar.gz cuberite-35a4aa419c3ee09f50cb9b397e76d87a13f9997f.tar.bz2 cuberite-35a4aa419c3ee09f50cb9b397e76d87a13f9997f.tar.lz cuberite-35a4aa419c3ee09f50cb9b397e76d87a13f9997f.tar.xz cuberite-35a4aa419c3ee09f50cb9b397e76d87a13f9997f.tar.zst cuberite-35a4aa419c3ee09f50cb9b397e76d87a13f9997f.zip |
Diffstat (limited to 'src/Simulator/IncrementalRedstoneSimulator.h')
-rw-r--r-- | src/Simulator/IncrementalRedstoneSimulator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator.h b/src/Simulator/IncrementalRedstoneSimulator.h index 1d6a49aca..9c1f9460c 100644 --- a/src/Simulator/IncrementalRedstoneSimulator.h +++ b/src/Simulator/IncrementalRedstoneSimulator.h @@ -108,7 +108,9 @@ private: /** Handles redstone wire */ void HandleRedstoneWire(int a_RelBlockX, int a_RelBlockY, int a_RelBlockZ); /** Handles repeaters */ - void HandleRedstoneRepeater(int a_RelBlockX, int a_RelBlockY, int a_RelBlockZ, BLOCKTYPE a_MyState, RepeatersDelayList::iterator a_Itr); + void HandleRedstoneRepeater(int a_RelBlockX, int a_RelBlockY, int a_RelBlockZ, BLOCKTYPE a_MyState); + /** Handles delayed updates to Repeaters **/ + void HandleRedstoneRepeaterDelays(); /* ====================== */ /* ====== DEVICES ====== */ |