diff options
Diffstat (limited to '')
-rw-r--r-- | source/cWorld.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/source/cWorld.h b/source/cWorld.h index e030f3570..5e448d79b 100644 --- a/source/cWorld.h +++ b/source/cWorld.h @@ -278,9 +278,6 @@ public: void Tick(float a_Dt);
- void ReSpreadLighting(int a_ChunkX, int a_ChunkY, int a_ChunkZ);
- void RemoveSpread(int a_ChunkX, int a_ChunkY, int a_ChunkZ);
-
void InitializeSpawn();
void CastThunderbolt (int a_X, int a_Y, int a_Z); //tolua_export
@@ -291,6 +288,8 @@ public: cWorldStorage & GetStorage (void) { return m_Storage; }
cChunkMap * GetChunkMap (void) { return m_ChunkMap; }
+ bool IsPlacingItemLegal(Int16 a_ItemType, int a_BlockX, int a_BlockY, int a_BlockZ);
+
private:
friend class cRoot;
@@ -344,9 +343,6 @@ private: cClientHandleList m_Clients;
cPlayerList m_Players;
- cCriticalSection m_CSLighting;
- cChunkCoordsList m_SpreadQueue;
-
cCriticalSection m_CSFastSetBlock;
sSetBlockList m_FastSetBlockQueue;
|