Mantle height causing chunk holes

This commit is contained in:
cyberpwn 2021-08-19 05:42:52 -04:00
parent 9aa426ed56
commit aa6bdd2786

View File

@ -147,7 +147,7 @@ public class Mantle {
throw new RuntimeException("The Mantle is closed");
}
if (y < 0) {
if (y < 0 || y >= worldHeight) {
return;
}