From 9434a48ae75a71804a6a8a52ff202c2af1b572d1 Mon Sep 17 00:00:00 2001 From: Kolyah35 Date: Mon, 20 Jul 2026 23:10:21 +0300 Subject: [PATCH] Revert "help me" This reverts commit 79be815827f1b0ae31e0961e5f74d677fcb80e97. --- src/client/Minecraft.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/client/Minecraft.cpp b/src/client/Minecraft.cpp index 009c4cf..8c90b6f 100755 --- a/src/client/Minecraft.cpp +++ b/src/client/Minecraft.cpp @@ -1197,15 +1197,12 @@ void Minecraft::init() TextureId grassId = (textures->loadTexture("misc/grasscolor.png")); // loading the uh png for foliage color int* grassPixels = textures->loadTexturePixels(grassId, "misc/grasscolor.png"); GrassColor::init(grassPixels); -#ifndef __APPLE__ + bool tint = options.getBooleanValue(OPTIONS_FOLIAGE_TINT); // finally, toggleable foliage color - bool sideTint = options.getBooleanValue(OPTIONS_TINTED_SIDE); -#else - bool tint = false, sideTint = false; -#endif FoliageColor::setUseTint(tint); GrassColor::setUseTint(tint); + bool sideTint = options.getBooleanValue(OPTIONS_TINTED_SIDE); TileRenderer::setUseTint(sideTint);