Trigger CI

This commit is contained in:
FutureRave
2022-02-27 13:40:19 +00:00
parent f283a52540
commit 620efbd068

View File

@ -966,7 +966,8 @@ namespace Components
Script::AddFunction("HttpGet", [](Game::scr_entref_t)
{
if (!Dedicated::IsEnabled() && !Flags::HasFlag("scriptablehttp")) return;
if (!Dedicated::IsEnabled() && !Flags::HasFlag("scriptablehttp"))
return;
const auto* url = Game::Scr_GetString(0);
@ -986,7 +987,8 @@ namespace Components
Script::AddFunction("HttpCancel", [](Game::scr_entref_t)
{
if (!Dedicated::IsEnabled() && !Flags::HasFlag("scriptablehttp")) return;
if (!Dedicated::IsEnabled() && !Flags::HasFlag("scriptablehttp"))
return;
const auto object = Game::Scr_GetObject(0);
for (const auto& download : Download::ScriptDownloads)