Add empty mod string check
This commit is contained in:
parent
c19c2bc696
commit
f877073ae0
1 changed files with 10 additions and 6 deletions
|
@ -26,6 +26,10 @@ public class ModRequirementChecker {
|
|||
|
||||
//TODO: add version check
|
||||
|
||||
|
||||
if (mod.isEmpty())
|
||||
continue;
|
||||
|
||||
if (!Loader.isModLoaded(mod)) {
|
||||
missingMods = missingMods + mod + ", ";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue