Confirm world gen for generated render sources

This commit is contained in:
James Seibel
2024-01-16 07:44:16 -06:00
parent 146dd85920
commit 69a2c18452
@@ -81,6 +81,21 @@ public class RenderSourceFileHandler extends AbstractDataSourceHandler<ColumnRen
//===========//
// overrides //
//===========//
@Override
public ColumnRenderSource get(DhSectionPos pos)
{
// call the full data provider to make sure the full data is up to date
// and any necessary world generation has been queued/completed
this.fullDataSourceProvider.get(pos);
return super.get(pos);
}
//====================//
// Abstract overrides //
//====================//