mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-14 19:56:19 +00:00
fix BinaryColumn
This commit is contained in:
@@ -31,7 +31,7 @@ public class BinaryColumn {
|
||||
public void forEach(IntConsumer consumer) {
|
||||
for(int y = 0; y < data.length; y++) {
|
||||
if(data[y]) {
|
||||
consumer.accept(y - minY);
|
||||
consumer.accept(y + minY);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user