"Perfection"

This commit is contained in:
Daniel Mills
2020-01-21 17:49:20 -05:00
parent 0e12c6906f
commit 0483bc0afe
12 changed files with 284 additions and 307 deletions

View File

@@ -589,11 +589,11 @@ public class IrisBiome
return scatterChance;
}
public MB getScatterChanceSingle()
public MB getScatterChanceSingle(double d)
{
for(MB i : getScatterChance().keySet())
{
if(M.r(getScatterChance().get(i)))
if(d < getScatterChance().get(i))
{
return i;
}