Fix empty data sources not updating and being regenerated

This commit is contained in:
James Seibel
2024-03-16 22:43:22 -05:00
parent cbadfab62a
commit c55880bcb9
@@ -254,14 +254,6 @@ public class FullDataSourceV2 implements IDataSource<IDhLevel>
public boolean update(FullDataSourceV2 inputDataSource, @Nullable IDhLevel level) { return this.update(inputDataSource); }
public boolean update(FullDataSourceV2 inputDataSource)
{
if (inputDataSource.mapping.getMaxValidId() == 0)
{
// can happen in the end or where empty chunks exist
return false;
}
byte thisDetailLevel = this.pos.getDetailLevel();
byte inputDetailLevel = inputDataSource.pos.getDetailLevel();