2 Commits

Author SHA1 Message Date
Tixx
4f03d21dea Move mod caching directory log 2024-11-14 11:12:19 +01:00
Lion
00bd5be4d0 add PR template 2024-11-13 16:20:54 +01:00
3 changed files with 7 additions and 1 deletions

6
.github/pull_request_template.md vendored Normal file
View File

@@ -0,0 +1,6 @@
Please replace this text <-> with your PR description and leave the below declarations intact.
---
By creating this pull request, I understand that code that is AI generated or otherwise automatically generated may be rejected without further discussion.
I declare that I fully understand all code I pushed into this PR, and wrote all this code myself and own the rights to this code.

View File

@@ -30,7 +30,6 @@ void ParseConfig(const nlohmann::json& d) {
} }
if (d.contains("CachingDirectory") && d["CachingDirectory"].is_string()) { if (d.contains("CachingDirectory") && d["CachingDirectory"].is_string()) {
CachingDirectory = d["CachingDirectory"].get<std::string>(); CachingDirectory = d["CachingDirectory"].get<std::string>();
info("Mod caching directory: " + CachingDirectory);
} }
if (d.contains("Dev") && d["Dev"].is_boolean()) { if (d.contains("Dev") && d["Dev"].is_boolean()) {

View File

@@ -43,6 +43,7 @@ int main(int argc, const char** argv) try {
InitLog(); InitLog();
ConfigInit(); ConfigInit();
InitOptions(argc, argv, options); InitOptions(argc, argv, options);
info("Mod caching directory: " + CachingDirectory);
InitLauncher(); InitLauncher();
info("IMPORTANT: You MUST keep this window open to play BeamMP!"); info("IMPORTANT: You MUST keep this window open to play BeamMP!");