From 22779670ea7f2066b1442a3072f746a331fa8a1d Mon Sep 17 00:00:00 2001 From: Cvolton Date: Sun, 11 Feb 2024 17:19:35 +0100 Subject: [PATCH] send loader version with bi statistics --- src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.cpp b/src/utils.cpp index e175169..37576b5 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -585,7 +585,7 @@ void BetterInfo::loadImportantNotices(CCLayer* layer) { layer->retain(); - web::AsyncWebRequest().fetch(fmt::format("https://geometrydash.eu/mods/betterinfo/_api/importantNotices/?platform={}&version={}", GEODE_PLATFORM_NAME, Mod::get()->getVersion().toString(true))).json().then([layer](const matjson::Value& info){ + web::AsyncWebRequest().fetch(fmt::format("https://geometrydash.eu/mods/betterinfo/_api/importantNotices/?platform={}&version={}&loader={}¬Alpha7=1", GEODE_PLATFORM_NAME, Mod::get()->getVersion().toString(true), Loader::get()->getVersion().toString(true))).json().then([layer](const matjson::Value& info){ auto notice = info.try_get("notice"); if(notice == std::nullopt) return;