Fix BCLib compiling for MC 1.16 and disable 1.17

This commit is contained in:
James Seibel
2023-08-25 07:19:12 -05:00
parent 83fa1a0281
commit 56dd3c352e
@@ -2,7 +2,9 @@ package com.seibel.distanthorizons.fabric.wrappers.modAccessor;
import com.seibel.distanthorizons.core.wrapperInterfaces.modAccessor.IBCLibAccessor;
#if MC_1_16_5
#elif PRE_MC_1_19_2
import org.betterx.bclib.config.Configs;
import org.betterx.bclib.config.ClientConfig;
#elif MC_1_17_1 || MC_1_18_2
import ru.bclib.config.ClientConfig;
import ru.bclib.config.Configs;
#else
@@ -17,9 +19,12 @@ public class BCLibAccessor implements IBCLibAccessor
public void setRenderCustomFog(boolean newValue)
{
#if !MC_1_17_1 // 1.17 doesn't have "ClientConfig.CUSTOM_FOG_RENDERING"
// Change the value of CUSTOM_FOG_RENDERING in the bclib client config
// This disabled fog from rendering within bclib
Configs.CLIENT_CONFIG.set(ClientConfig.CUSTOM_FOG_RENDERING, newValue);
#endif
}
}