summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2014-09-28 18:57:01 +0200
committerworktycho <work.tycho@gmail.com>2014-09-28 18:57:01 +0200
commit80fe8d778973286397e91564a203521b8bfd3760 (patch)
tree3680f27e16431a1a57729b12f41dabfa291818ba
parentUse factory method to construct redstone simulator data (diff)
downloadcuberite-80fe8d778973286397e91564a203521b8bfd3760.tar
cuberite-80fe8d778973286397e91564a203521b8bfd3760.tar.gz
cuberite-80fe8d778973286397e91564a203521b8bfd3760.tar.bz2
cuberite-80fe8d778973286397e91564a203521b8bfd3760.tar.lz
cuberite-80fe8d778973286397e91564a203521b8bfd3760.tar.xz
cuberite-80fe8d778973286397e91564a203521b8bfd3760.tar.zst
cuberite-80fe8d778973286397e91564a203521b8bfd3760.zip
-rw-r--r--src/Chunk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index 00cea4416..96b8eda4e 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -92,7 +92,7 @@ cChunk::cChunk(
m_NeighborZP(a_NeighborZP),
m_WaterSimulatorData(a_World->GetWaterSimulator()->CreateChunkData()),
m_LavaSimulatorData (a_World->GetLavaSimulator ()->CreateChunkData()),
- m_RedstoneSimulatorData(a_World->GetRedstoneSimulator ()->CreateChunkData()),
+ m_RedstoneSimulatorData(a_World->GetRedstoneSimulator()->CreateChunkData()),
m_AlwaysTicked(0)
{
if (a_NeighborXM != NULL)