File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
common/src/main/java/pro/mikey/xray/core Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1+ ## [ 21.6.3]
2+
3+ ### Fixed
4+
5+ - Potential crash when rendering blocks that are broken.
6+
17## [ 21.6.2]
28
39### Fixed
Original file line number Diff line number Diff line change @@ -84,7 +84,10 @@ public static void renderBlocks(PoseStack poseStack) {
8484
8585 var opacity = 1F ;
8686
87- for (var blockProps : blocksWithProps ) {
87+ // More concurrent modification exceptions can happen here, so we clone the list
88+ var blockPropsClone = new ArrayList <>(blocksWithProps );
89+
90+ for (var blockProps : blockPropsClone ) {
8891 if (blockProps == null ) {
8992 continue ;
9093 }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ parchment_minecraft_version=1.21.4
1111parchment_mappings_version =2025.03.23
1212
1313mod_id =xray
14- mod_version =21.6.2
14+ mod_version =21.6.3
1515minecraft_version =1.21.6
1616minecraft_version_range =[%base],1.21.9
1717
You can’t perform that action at this time.
0 commit comments