diff options
author | worktycho <work.tycho@gmail.com> | 2014-09-27 15:46:50 +0200 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2014-09-27 15:46:50 +0200 |
commit | 4f8818748e8b32bc58e251bbd359216554c3e6c6 (patch) | |
tree | cca87e6d90b43b54a4ffec016d173a2ee1a84e64 /src/Chunk.h | |
parent | Merge pull request #1459 from Masy98/blocks (diff) | |
download | cuberite-4f8818748e8b32bc58e251bbd359216554c3e6c6.tar cuberite-4f8818748e8b32bc58e251bbd359216554c3e6c6.tar.gz cuberite-4f8818748e8b32bc58e251bbd359216554c3e6c6.tar.bz2 cuberite-4f8818748e8b32bc58e251bbd359216554c3e6c6.tar.lz cuberite-4f8818748e8b32bc58e251bbd359216554c3e6c6.tar.xz cuberite-4f8818748e8b32bc58e251bbd359216554c3e6c6.tar.zst cuberite-4f8818748e8b32bc58e251bbd359216554c3e6c6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Chunk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index b525fbb82..bc66b6528 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -421,6 +421,7 @@ public: cSandSimulatorChunkData & GetSandSimulatorData (void) { return m_SandSimulatorData; } cRedstoneSimulatorChunkData * GetRedstoneSimulatorData(void) { return m_RedstoneSimulatorData; } + void SetRedstoneSimulatorData(cRedstoneSimulatorChunkData * a_Data) { m_RedstoneSimulatorData = a_Data; } bool IsRedstoneDirty(void) const { return m_IsRedstoneDirty; } void SetIsRedstoneDirty(bool a_Flag) { m_IsRedstoneDirty = a_Flag; } |