Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private void tickChunk(ChunkPosition chunk, Set<BlockTicker> tickers, Set<Locati
try {
// Only continue if the Chunk is actually loaded
if (chunk.isLoaded()) {
for (Location l : locations) {
for (Location l : new HashSet<>(locations)) {
tickLocation(tickers, l);
}
}
Expand Down
Loading