summaryrefslogtreecommitdiffstats
path: root/source/cWorld.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cWorld.h')
-rw-r--r--source/cWorld.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/source/cWorld.h b/source/cWorld.h
index 569fe8d32..a9c068336 100644
--- a/source/cWorld.h
+++ b/source/cWorld.h
@@ -183,21 +183,6 @@ private:
friend class cRoot;
- struct sSetBlockData
- {
- sSetBlockData( int a_X, int a_Y, int a_Z, char a_BlockID, char a_BlockMeta )
- : x( a_X )
- , y( a_Y )
- , z( a_Z )
- , BlockID( a_BlockID )
- , BlockMeta( a_BlockMeta )
- {}
- int x, y, z;
- char BlockID, BlockMeta;
- };
-
- typedef std::list< sSetBlockData > FastSetBlockList;
-
// This random generator is to be used only in the Tick() method, and thus only in the World-Tick-thread (MTRand is not exactly thread-safe)
MTRand m_TickRand;
@@ -252,7 +237,7 @@ private:
cChunkCoordsList m_SpreadQueue;
cCriticalSection m_CSFastSetBlock;
- FastSetBlockList m_FastSetBlockQueue;
+ sSetBlockList m_FastSetBlockQueue;
cChunkGenerator m_Generator;