Fix feature searching

This commit is contained in:
Daniel Mills 2021-08-03 18:11:57 -04:00
parent 20e8c033cc
commit ea8d1100ac

View File

@ -212,6 +212,11 @@ public interface EngineParallaxManager extends DataProvider, IObjectPlacer {
}
}
pos.add(forEachFeature(x<<4, z<<4));
pos.add(forEachFeature(((x+1)<<4)-1, z<<4));
pos.add(forEachFeature(x<<4, ((z+1)<<4)-1));
pos.add(forEachFeature(((x+1)<<4)-1, ((z+1)<<4)-1));
pos.removeDuplicates();
return pos;
}