Fix subclaims being added to chunk claims map when resized (#1082)
This commit is contained in:
parent
746f10449d
commit
0ceb6f8e21
|
|
@ -473,6 +473,9 @@ public abstract class DataStore
|
|||
|
||||
private void addToChunkClaimMap(Claim claim)
|
||||
{
|
||||
// Subclaims should not be added to chunk claim map.
|
||||
if (claim.parent != null) return;
|
||||
|
||||
ArrayList<Long> chunkHashes = claim.getChunkHashes();
|
||||
for (Long chunkHash : chunkHashes)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user