diff options
-rw-r--r-- | src/main/java/com/github/technus/tectech/mechanics/data/ChunkDataHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/github/technus/tectech/mechanics/data/ChunkDataHandler.java b/src/main/java/com/github/technus/tectech/mechanics/data/ChunkDataHandler.java index aed20e0b9e..cfe4699a91 100644 --- a/src/main/java/com/github/technus/tectech/mechanics/data/ChunkDataHandler.java +++ b/src/main/java/com/github/technus/tectech/mechanics/data/ChunkDataHandler.java @@ -56,7 +56,7 @@ public class ChunkDataHandler { } else { chunkData.isLoaded = true; // make a copy of chunk data. this tag will be serialized on another thread. not making a copy might - // cause the other thread to encounter CME. + // cause the other thread to encounter ConcurrentModificationException. event.getData().setTag(BASE_TAG_NAME, chunkData.data.copy()); } } |