We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e26215 commit 87c128bCopy full SHA for 87c128b
FlashpointManager/src/Common.cs
@@ -325,7 +325,8 @@ public static void SyncManager()
325
326
foreach (string dependID in component.Depends)
327
{
328
- if (!ComponentTracker.Downloaded.Exists(c => c.ID == dependID))
+ if (!(ComponentTracker.Downloaded.Exists(c => c.ID == dependID)
329
+ || ComponentTracker.Outdated.Exists(c => c.ID == dependID)))
330
331
var query = Main.ComponentList.Nodes.Find(dependID, true);
332
if (query.Length > 0) ComponentTracker.Outdated.Add(query[0].Tag as Component);
0 commit comments