mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-08-16 16:26:26 +00:00
clarify auth version reject message
This commit is contained in:
parent
3403c8acba
commit
7dd2d89ad9
@ -297,7 +297,7 @@ std::shared_ptr<TClient> TNetwork::Authentication(TConnection&& RawConnection) {
|
|||||||
if (Application::IsOutdated(ClientVersion, MinClientVersion)) {
|
if (Application::IsOutdated(ClientVersion, MinClientVersion)) {
|
||||||
beammp_errorf("Client tried to connect with version '{}', but only versions >= {} are allowed",
|
beammp_errorf("Client tried to connect with version '{}', but only versions >= {} are allowed",
|
||||||
ClientVersion.AsString(), Application::ClientMinimumVersion().AsString());
|
ClientVersion.AsString(), Application::ClientMinimumVersion().AsString());
|
||||||
ClientKick(*Client, "Outdated Version!");
|
ClientKick(*Client, fmt::format("Outdated version, launcher version >={} required to join!", MinClientVersion.AsString()));
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user