We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d573ca commit 4f205e9Copy full SHA for 4f205e9
1 file changed
src/main/java/io/github/mikip98/humilityafm/util/mod_support/ModSupportManager.java
@@ -49,7 +49,8 @@ protected static void checkForMod(SupportedMods mod) {
49
return;
50
}
51
52
- // Backup check if the mod is present in case the mod is not loaded (IDK how this really works)
+ // Backup check if the mod is present, but not yet loaded
53
+ // (IDK if this is required, but it should not hurt)
54
for (ModContainer modContainer : fabricLoader.getAllMods()) {
55
if (modContainer.getMetadata().getId().equals(mod.modId)) {
56
addMod(mod);
0 commit comments