diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-06 23:21:57 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-06 23:21:57 +0200 |
commit | 502935c061ea913180f0a77a7406f5292e697c79 (patch) | |
tree | a74e562a772b89db12985d6f1744ae91ff4890d6 /source/Generating/ChunkDesc.cpp | |
parent | Added a tab in the serversettings where you can edit the world.ini of all your worlds. (diff) | |
download | cuberite-502935c061ea913180f0a77a7406f5292e697c79.tar cuberite-502935c061ea913180f0a77a7406f5292e697c79.tar.gz cuberite-502935c061ea913180f0a77a7406f5292e697c79.tar.bz2 cuberite-502935c061ea913180f0a77a7406f5292e697c79.tar.lz cuberite-502935c061ea913180f0a77a7406f5292e697c79.tar.xz cuberite-502935c061ea913180f0a77a7406f5292e697c79.tar.zst cuberite-502935c061ea913180f0a77a7406f5292e697c79.zip |
Diffstat (limited to 'source/Generating/ChunkDesc.cpp')
-rw-r--r-- | source/Generating/ChunkDesc.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/Generating/ChunkDesc.cpp b/source/Generating/ChunkDesc.cpp index f0927f294..68feb463d 100644 --- a/source/Generating/ChunkDesc.cpp +++ b/source/Generating/ChunkDesc.cpp @@ -526,6 +526,15 @@ void cChunkDesc::RandomFillRelCuboid( +void cChunkDesc::AddBlockEntity(cBlockEntity * a_BlockEntity)
+{
+ m_BlockEntities.push_back(a_BlockEntity);
+}
+
+
+
+
+
void cChunkDesc::CompressBlockMetas(cChunkDef::BlockNibbles & a_DestMetas)
{
const NIBBLETYPE * AreaMetas = m_BlockArea.GetBlockMetas();
|