summaryrefslogtreecommitdiff
path: root/src/mapblock.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-04-04 05:25:55 +0300
committerPerttu Ahola <celeron55@gmail.com>2011-04-04 05:25:55 +0300
commita9f89fb3fb72a57828ebceaeb4b469a005c11541 (patch)
tree63fe13559d61483813b537ed7b7c45e478750df9 /src/mapblock.cpp
parent023fc5b7714859f36f62a3fefda7a2d312d46bdc (diff)
downloadminetest-a9f89fb3fb72a57828ebceaeb4b469a005c11541.tar.gz
minetest-a9f89fb3fb72a57828ebceaeb4b469a005c11541.tar.bz2
minetest-a9f89fb3fb72a57828ebceaeb4b469a005c11541.zip
now the server builds
Diffstat (limited to 'src/mapblock.cpp')
-rw-r--r--src/mapblock.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mapblock.cpp b/src/mapblock.cpp
index c14fbd04e..efa760f0e 100644
--- a/src/mapblock.cpp
+++ b/src/mapblock.cpp
@@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "light.h"
#include <sstream>
+#ifndef SERVER
void MeshMakeData::fill(u32 daynight_ratio, MapBlock *block)
{
m_daynight_ratio = daynight_ratio;
@@ -80,6 +81,7 @@ void MeshMakeData::fill(u32 daynight_ratio, MapBlock *block)
}
}
}
+#endif
/*
Parameters must consist of air and !air.
@@ -1273,6 +1275,7 @@ scene::SMesh* makeMapBlockMesh(MeshMakeData *data)
//std::cout<<"added "<<fastfaces.getSize()<<" faces."<<std::endl;
}
+#endif // !SERVER
/*
MapBlock
@@ -1381,6 +1384,8 @@ MapNode MapBlock::getNodeParentNoEx(v3s16 p)
}
}
+#ifndef SERVER
+
#if 1
void MapBlock::updateMesh(u32 daynight_ratio)
{