This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
So I was looking at the file and I can't figure out where I would need to put the 0 to disable it. Does anyone know? figured out how to open it to a readable file just need to know where to alter it?
package lumien.hardcoredarkness.config;
import java.util.Arrays;
import java.util.HashSet;
public class HardcoreDarknessConfig
{
int mode;
boolean darkNether;
boolean darkEnd;
boolean alternativeNightSkylight;
HashSet<Integer> dimensionBlacklist;
float[] moonLightList = new float[5];
float gammaOverride = -1.0F;
public HardcoreDarknessConfig()
{
this.dimensionBlacklist = new HashSet();
this.moonLightList[0] = 1.0F;
this.moonLightList[1] = 0.925F;
this.moonLightList[2] = 0.85F;
this.moonLightList[3] = 0.775F;
this.moonLightList[4] = 0.7F;
}
public void addDimensionToBlacklist(int dimension)
{
this.dimensionBlacklist.add(Integer.valueOf(dimension));
}
public boolean isDimensionBlacklisted(int dimension)
{
return this.dimensionBlacklist.contains(Integer.valueOf(dimension));
}
public HashSet<Integer> getDimensionBlackList()
{
return this.dimensionBlacklist;
}
public void setMode(int newMode)
{
this.mode = newMode;
}
public void setDarkNether(boolean darkNether)
{
this.darkNether = darkNether;
}
public void setDarkEnd(boolean darkEnd)
{
this.darkEnd = darkEnd;
}
public void setAlternativeNightSkylight(boolean alternativeNightSkylight)
{
this.alternativeNightSkylight = alternativeNightSkylight;
}
public int getMode()
{
return this.mode;
}
public boolean darkNether()
{
return this.darkNether;
}
public boolean darkEnd()
{
return this.darkEnd;
}
public boolean removeBlue()
{
return this.alternativeNightSkylight;
}
public String toString()
{
return "HardcoreDarknessConfig [mode=" this.mode ", darkNether=" this.darkNether ", darkEnd=" this.darkEnd ", alternativeNightSkylight=" this.alternativeNightSkylight ", dimensionBlacklist=" this.dimensionBlacklist ", moonLightList=" Arrays.toString(this.moonLightList) ", gammaOverride=" this.gammaOverride "]";
}
public float[] getMoonLightList()
{
return this.moonLightList;
}
public void setMoonLightList(float[] newList)
{
this.moonLightList = newList;
}
public float getGammaOverride()
{
return this.gammaOverride;
}
public void setGammaOverride(float gammaOverride)
{
this.gammaOverride = gammaOverride;
}
}
Subreddit
Post Details
- Posted
- 3 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/feedthebeas...