mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Don't check for accepted EULA versions if this is a dedicated server
This commit is contained in:
parent
ec825962b6
commit
2fe902061e
@ -433,7 +433,7 @@ bool CPylon::SendRequest(const char* endpoint, const rapidjson::Document& reques
|
||||
rapidjson::Document& responseJson, string& outMessage, CURLINFO& status,
|
||||
const char* errorText, const bool checkEula) const
|
||||
{
|
||||
if (checkEula && !IsEULAUpToDate())
|
||||
if (!IsDedicated() && !IsEULAUpToDate() && checkEula)
|
||||
{
|
||||
outMessage = "EULA not accepted";
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user