Skip to content

Commit 5bdabd7

Browse files
committed
Add message in the case that no mods have been loaded
1 parent a1d93c3 commit 5bdabd7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

CubeModLoader/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@ void PrintLoadedMods() {
206206
mods += dll->fileName;
207207
mods += "\n";
208208
}
209+
if (modDLLs.size() == 0) {
210+
mods += "<No mods>\n";
211+
}
209212
Popup("Loaded Mods", mods.c_str());
210213
}
211214

0 commit comments

Comments
 (0)