Selaa lähdekoodia

Fixed typo with known guids

Syed zainul abedin 1 viikko sitten
vanhempi
commit
ffbeabc30a
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      Assets/IntelligentProjectAnalyzer/Editor/AssetDataFetcher.cs

+ 1 - 1
Assets/IntelligentProjectAnalyzer/Editor/AssetDataFetcher.cs

@@ -33,7 +33,7 @@ namespace IntelligentProjectAnalyzer.Editor
             var knownGuids = new HashSet<string>();
             knownGuids.UnionWith(scriptableObjects);
             knownGuids.UnionWith(prefabs);
-            knownGuids.UnionWith(scriptableObjects);
+            knownGuids.UnionWith(scripts);
             knownGuids.UnionWith(scenes);
             
             var miscGuids = new Queue<string>(allGuids.Except(knownGuids));