From 2da05d94c86af647e67f5b0aa7512e2f9d99cfab Mon Sep 17 00:00:00 2001 From: Shredder Date: Thu, 7 May 2026 14:06:01 +0500 Subject: [PATCH] should return some value in the debug stuff so nothing breaks --- src/client/Minecraft.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/Minecraft.cpp b/src/client/Minecraft.cpp index 33834e9..64fb14e 100755 --- a/src/client/Minecraft.cpp +++ b/src/client/Minecraft.cpp @@ -1456,18 +1456,21 @@ std::string Minecraft::gatherStats1() { #ifndef STANDALONE_SERVER return levelRenderer->gatherStats1(); #endif + return "Blank"; } std::string Minecraft::gatherStats2() { #ifndef STANDALONE_SERVER return levelRenderer->gatherStats2(); #endif + return "Blank"; } std::string Minecraft::gatherStats3() { #ifndef STANDALONE_SERVER return ("P: " + particleEngine->countParticles() + ". T: " + (level->gatherStats())); #endif + return "Blank"; } std::string Minecraft::gatherStats4() {