From 1b41d51171a8b027b66c2565213d167847aba170 Mon Sep 17 00:00:00 2001 From: melchior Date: Sat, 7 Nov 2020 15:21:01 -0500 Subject: [PATCH] Attempt to fix crash with threading on Metadata clean --- Automap/Data/ColumnMeta.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Automap/Data/ColumnMeta.cs b/Automap/Data/ColumnMeta.cs index f1e9681..4652644 100644 --- a/Automap/Data/ColumnMeta.cs +++ b/Automap/Data/ColumnMeta.cs @@ -136,7 +136,7 @@ namespace Automap //Start fresh... HeightMap = new ushort[ChunkSize, ChunkSize]; - RockRatio = new Dictionary(this.RockRatio.Count); + RockRatio = new Dictionary(10); AirBlocks = 0; NonAirBlocks = 0; YMax = 0; -- 2.11.0