summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mineral.cpp4
-rw-r--r--src/mineral.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/mineral.cpp b/src/mineral.cpp
index 506f5b75c..4f658db48 100644
--- a/src/mineral.cpp
+++ b/src/mineral.cpp
@@ -19,6 +19,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "mineral.h"
+#ifndef SERVER
+
const char *mineral_filenames[MINERAL_COUNT] =
{
NULL,
@@ -46,4 +48,6 @@ textureid_t mineral_block_texture(u8 mineral)
return mineral_textures[mineral];
}
+#endif
+
diff --git a/src/mineral.h b/src/mineral.h
index aa0902e12..6c10c2256 100644
--- a/src/mineral.h
+++ b/src/mineral.h
@@ -31,8 +31,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
type param.
*/
+#ifndef SERVER
// Caches textures
void init_mineral(IrrlichtWrapper *irrlicht);
+#endif
#define MINERAL_NONE 0
#define MINERAL_COAL 1