diff --git a/src/game/client/components/menus.cpp b/src/game/client/components/menus.cpp index c0f3792f3..483db0251 100644 --- a/src/game/client/components/menus.cpp +++ b/src/game/client/components/menus.cpp @@ -1208,7 +1208,7 @@ void CMenus::RenderPopupFullscreen(CUIRect Screen) pButtonText = Localize("Ok"); if(Client()->ReconnectTime() > 0) { - str_format(aBuf, sizeof(aBuf), Localize("Reconnect in %d sec"), (int)((Client()->ReconnectTime() - time_get()) / time_freq())); + str_format(aBuf, sizeof(aBuf), Localize("Reconnect in %d sec"), (int)((Client()->ReconnectTime() - time_get()) / time_freq()) + 1); pTitle = Client()->ErrorString(); pExtraText = aBuf; pButtonText = Localize("Abort");