Fixed BCLib compat

This commit is contained in:
Frank 2021-12-09 21:39:12 +01:00
parent 2a0f58a729
commit ef025d05dd
29 changed files with 21 additions and 47 deletions

View file

@ -160,6 +160,6 @@ public class EndBiomes {
}
public static EndCaveBiome getCaveBiome(int x, int z) {
return (EndCaveBiome) caveBiomeMap.getBiome(x, z);
return (EndCaveBiome) caveBiomeMap.getBiome(x, 5, z);
}
}