[Fix] useFogDensity
is no longer used (#119)
This commit is contained in:
parent
78486cf3c1
commit
fd7989cdd1
1 changed files with 0 additions and 10 deletions
|
@ -4,13 +4,11 @@ import org.betterx.betterend.config.Configs;
|
||||||
|
|
||||||
public class ClientOptions {
|
public class ClientOptions {
|
||||||
private static boolean customSky;
|
private static boolean customSky;
|
||||||
private static boolean useFogDensity;
|
|
||||||
private static boolean blendBiomeMusic;
|
private static boolean blendBiomeMusic;
|
||||||
private static boolean sulfurWaterColor;
|
private static boolean sulfurWaterColor;
|
||||||
|
|
||||||
public static void init() {
|
public static void init() {
|
||||||
customSky = Configs.CLENT_CONFIG.getBooleanRoot("customSky", true);
|
customSky = Configs.CLENT_CONFIG.getBooleanRoot("customSky", true);
|
||||||
useFogDensity = Configs.CLENT_CONFIG.getBooleanRoot("useFogDensity", true);
|
|
||||||
blendBiomeMusic = Configs.CLENT_CONFIG.getBooleanRoot("blendBiomeMusic", true);
|
blendBiomeMusic = Configs.CLENT_CONFIG.getBooleanRoot("blendBiomeMusic", true);
|
||||||
sulfurWaterColor = Configs.CLENT_CONFIG.getBooleanRoot("sulfurWaterColor", true);
|
sulfurWaterColor = Configs.CLENT_CONFIG.getBooleanRoot("sulfurWaterColor", true);
|
||||||
Configs.CLENT_CONFIG.saveChanges();
|
Configs.CLENT_CONFIG.saveChanges();
|
||||||
|
@ -24,14 +22,6 @@ public class ClientOptions {
|
||||||
ClientOptions.customSky = customSky;
|
ClientOptions.customSky = customSky;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean useFogDensity() {
|
|
||||||
return useFogDensity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setUseFogDensity(boolean useFogDensity) {
|
|
||||||
ClientOptions.useFogDensity = useFogDensity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean blendBiomeMusic() {
|
public static boolean blendBiomeMusic() {
|
||||||
return blendBiomeMusic;
|
return blendBiomeMusic;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue