9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-28 11:39:07 +00:00

No goto - tp

This commit is contained in:
Daniel Mills
2021-07-16 04:03:09 -04:00
parent 377a4c2284
commit 985979ab14
2 changed files with 1 additions and 10 deletions

View File

@@ -40,10 +40,6 @@ public class InvertedBiomeGrid implements BiomeGrid {
@NotNull
@Override
public Biome getBiome(int arg0, int arg1, int arg2) {
if (!Iris.biome3d) {
return getBiome(arg0, arg2);
}
return grid.getBiome(arg0, 255 - arg1, arg2);
}
@@ -55,11 +51,6 @@ public class InvertedBiomeGrid implements BiomeGrid {
@Override
public void setBiome(int arg0, int arg1, int arg2, @NotNull Biome arg3) {
if (!Iris.biome3d) {
setBiome(arg0, arg2, arg3);
return;
}
grid.setBiome(arg0, 255 - arg1, arg2, arg3);
}
}