1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 06:13:36 +08:00

minor fix

This commit is contained in:
2025-09-21 23:01:29 +08:00
parent b995503f58
commit d6a8275938

View File

@@ -1141,7 +1141,7 @@ public class FactoryPatch : PatchImpl<FactoryPatch>
/* BEGIN: Item sources calculation */ /* BEGIN: Item sources calculation */
private static readonly Dictionary<int, ItemSource> ItemSources = new(); private static readonly Dictionary<int, ItemSource> ItemSources = [];
private static bool _itemSourcesInitialized; private static bool _itemSourcesInitialized;
private class ItemSource private class ItemSource
@@ -1212,7 +1212,7 @@ public class FactoryPatch : PatchImpl<FactoryPatch>
for (var i = 0; i < len; i++) for (var i = 0; i < len; i++)
{ {
if (ItemSources.ContainsKey(res[i])) continue; if (ItemSources.ContainsKey(res[i])) continue;
var rs = new ItemSource { Count = rescnt[i], From = new Dictionary<int, float>() }; var rs = new ItemSource { Count = rescnt[i], From = [], Extra = null };
var it = recipe.Items; var it = recipe.Items;
var itcnt = recipe.ItemCounts; var itcnt = recipe.ItemCounts;
var len2 = it.Length; var len2 = it.Length;
@@ -1223,7 +1223,7 @@ public class FactoryPatch : PatchImpl<FactoryPatch>
if (len > 1) if (len > 1)
{ {
rs.Extra = new Dictionary<int, float>(); rs.Extra = [];
for (var k = 0; k < len; k++) for (var k = 0; k < len; k++)
{ {
if (i != k) if (i != k)