diff --git a/src/client/Minecraft.cpp b/src/client/Minecraft.cpp index c0c6f70a..33834e92 100755 --- a/src/client/Minecraft.cpp +++ b/src/client/Minecraft.cpp @@ -1453,15 +1453,21 @@ void Minecraft::_levelGenerated() } std::string Minecraft::gatherStats1() { +#ifndef STANDALONE_SERVER return levelRenderer->gatherStats1(); +#endif } std::string Minecraft::gatherStats2() { +#ifndef STANDALONE_SERVER return levelRenderer->gatherStats2(); +#endif } std::string Minecraft::gatherStats3() { +#ifndef STANDALONE_SERVER return ("P: " + particleEngine->countParticles() + ". T: " + (level->gatherStats())); +#endif } std::string Minecraft::gatherStats4() {