diff options
author | Masy98 <masy@antheruscraft.de> | 2014-12-18 19:32:48 +0100 |
---|---|---|
committer | Masy98 <masy@antheruscraft.de> | 2014-12-18 19:32:48 +0100 |
commit | 706b9181e612410ea99c9d725d3cd448dafb152c (patch) | |
tree | 0d1281525b92566409a3c4a6d0bf8a0e9d5f7dc8 /src/Chunk.cpp | |
parent | Added Entity Guardian (diff) | |
parent | Merge pull request #1679 from SphinxC0re/master (diff) | |
download | cuberite-706b9181e612410ea99c9d725d3cd448dafb152c.tar cuberite-706b9181e612410ea99c9d725d3cd448dafb152c.tar.gz cuberite-706b9181e612410ea99c9d725d3cd448dafb152c.tar.bz2 cuberite-706b9181e612410ea99c9d725d3cd448dafb152c.tar.lz cuberite-706b9181e612410ea99c9d725d3cd448dafb152c.tar.xz cuberite-706b9181e612410ea99c9d725d3cd448dafb152c.tar.zst cuberite-706b9181e612410ea99c9d725d3cd448dafb152c.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 017ceda26..39e97f5cf 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -1371,9 +1371,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++) |