This commit is contained in:
DanMB
2022-09-13 23:32:11 -04:00
parent a66d60eaea
commit 78e9f21439
2 changed files with 12 additions and 18 deletions

View File

@@ -15,20 +15,6 @@ public class DummyBiomeProvider extends BiomeProvider {
@NotNull
@Override
public Biome getBiome(@NotNull WorldInfo worldInfo, int x, int y, int z) {
if(x == 10000 && z == 10000) {
try
{
Iris.error("Im biome provider, who am i?");
Iris.error(getClass().getCanonicalName());
throw new RuntimeException("WHATS GOING ON");
}
catch(Throwable e)
{
e.printStackTrace();
}
}
return Biome.PLAINS;
}