And a concurrentmodificationexception in the same code
This commit is contained in:
parent
0ac8d6ad3e
commit
0b68cf93ff
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ public class ForgeChunkManager
|
|||
}
|
||||
if (ticket.requestedChunks!=null)
|
||||
{
|
||||
for (ChunkCoordIntPair chunk : ticket.requestedChunks)
|
||||
for (ChunkCoordIntPair chunk : ImmutableSet.copyOf(ticket.requestedChunks))
|
||||
{
|
||||
unforceChunk(ticket, chunk);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue