From 6e1046d2fc9285b08b5aab4f9766f0ef84709178 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 21 Feb 2016 21:31:49 +0100 Subject: [PATCH] Correct XUID error. --- src/Components/Modules/Auth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Modules/Auth.cpp b/src/Components/Modules/Auth.cpp index fdd17275..29319af2 100644 --- a/src/Components/Modules/Auth.cpp +++ b/src/Components/Modules/Auth.cpp @@ -28,7 +28,7 @@ namespace Components { info->state = Auth::STATE_INVALID; info->time = Game::Com_Milliseconds(); - Game::SV_KickClientError(client, "XUID verification timeout!"); + Game::SV_KickClientError(client, "XUID verification timed out!"); } else if (info->state == Auth::STATE_UNKNOWN && info->time && (Game::Com_Milliseconds() - info->time) > 1000 * 5) // Wait 5 seconds (error delay) {