diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-10-25 22:54:00 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-10-25 22:54:00 +0200 |
commit | 85c298d73e871daadf91671cdae9db83e30f9029 (patch) | |
tree | 2f9a2afcc0bb676454f332f78bffb7bd3e6ea380 /src/Chunk.cpp | |
parent | Fixed some block checks (diff) | |
download | cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.gz cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.bz2 cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.lz cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.xz cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.zst cuberite-85c298d73e871daadf91671cdae9db83e30f9029.zip |
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r-- | src/Chunk.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index a0224322a..ba6c925cd 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -1370,9 +1370,9 @@ void cChunk::CreateBlockEntities(void) void cChunk::WakeUpSimulators(void) { - cSimulator<cChunk, cWorld> * WaterSimulator = m_World->GetWaterSimulator(); - cSimulator<cChunk, cWorld> * LavaSimulator = m_World->GetLavaSimulator(); - cSimulator<cChunk, cWorld> * RedstoneSimulator = m_World->GetRedstoneSimulator(); + cSimulator * WaterSimulator = m_World->GetWaterSimulator(); + cSimulator * LavaSimulator = m_World->GetLavaSimulator(); + cSimulator * RedstoneSimulator = m_World->GetRedstoneSimulator(); int BaseX = m_PosX * cChunkDef::Width; int BaseZ = m_PosZ * cChunkDef::Width; for (int x = 0; x < Width; x++) |