Skip to content

Commit

Permalink
Added a log for all loaded mods to help identify potential issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nexus4880 committed May 29, 2024
1 parent 1671837 commit 4b6d303
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Fika.Core/Utils/FikaModHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public void VerifyMods()
byte[] fileBytes = File.ReadAllBytes(location);
uint crc32 = CRC32C.Compute(fileBytes, 0, fileBytes.Length);
loadedMods.Add(pluginInfo.Metadata.GUID, crc32);
logger.LogInfo($"Loaded plugin: [{pluginInfo.Metadata.Name}] with GUID [{pluginInfo.Metadata.GUID}] and crc32 [{crc32}]");
CheckSpecialMods(pluginInfo.Metadata.GUID);
}

Expand Down

0 comments on commit 4b6d303

Please sign in to comment.