mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-03 00:15:35 +00:00
fix OOBE with low res column
This commit is contained in:
parent
61a40b4825
commit
8b12dda604
@ -42,8 +42,11 @@ public interface Column<T> {
|
||||
|
||||
int max = getMaxY() - 1;
|
||||
|
||||
while(y < max) {
|
||||
while(true) {
|
||||
y += resolution;
|
||||
if(y >= max) {
|
||||
break;
|
||||
}
|
||||
T current = get(y);
|
||||
|
||||
if(!current.equals(runningObj)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user