diff --git a/src/game/client/components/menus_browser.cpp b/src/game/client/components/menus_browser.cpp index 47cc3dc11..a463ddcb2 100644 --- a/src/game/client/components/menus_browser.cpp +++ b/src/game/client/components/menus_browser.cpp @@ -641,6 +641,8 @@ void CMenus::RenderServerbrowserServerDetail(CUIRect View) Cursor.m_LineWidth = Row.w; TextRender()->TextEx(&Cursor, aTemp, -1); + //DDRace + LeftColumn.HSplitTop(15.0f, &Row, &LeftColumn); UI()->DoLabelScaled(&Row, "Cheats", FontSize, -1); str_format(aTemp, sizeof(aTemp), "%s", pSelectedServer->m_Flags&SERVER_FLAG_CHEATS ? pSelectedServer->m_Flags&SERVER_FLAG_CHEATTIME? "On & can finish" : "On & can't finish" : "Off"); diff --git a/src/game/server/ddracecommands.cpp b/src/game/server/ddracecommands.cpp index d529203ec..e4fdfdd82 100644 --- a/src/game/server/ddracecommands.cpp +++ b/src/game/server/ddracecommands.cpp @@ -552,7 +552,7 @@ void CGameContext::ConInfo(IConsole::IResult *pResult, void *pUserData, int Clie { CGameContext *pSelf = (CGameContext *)pUserData; - pSelf->Console()->PrintResponse(IConsole::OUTPUT_LEVEL_STANDARD, "info", "DDRace Mod. Version: " DDRACE_VERSION); + pSelf->Console()->PrintResponse(IConsole::OUTPUT_LEVEL_STANDARD, "info", "DDRace Mod. Version: " GAME_VERSION); pSelf->Console()->PrintResponse(IConsole::OUTPUT_LEVEL_STANDARD, "info", "Official site: DDRace.info"); pSelf->Console()->PrintResponse(IConsole::OUTPUT_LEVEL_STANDARD, "info", "For more Info /cmdlist"); pSelf->Console()->PrintResponse(IConsole::OUTPUT_LEVEL_STANDARD, "info", "Or visit DDRace.info"); diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp index 9495cb505..0817fb2b6 100644 --- a/src/game/server/gamecontext.cpp +++ b/src/game/server/gamecontext.cpp @@ -604,7 +604,7 @@ void CGameContext::OnClientEnter(int ClientId) str_format(aBuf, sizeof(aBuf), "'%s' entered and joined the %s", Server()->ClientName(ClientId), m_pController->GetTeamName(m_apPlayers[ClientId]->GetTeam())); SendChat(-1, CGameContext::CHAT_ALL, aBuf); - SendChatTarget(ClientId, "DDRace Mod. Version: " DDRACE_VERSION); + SendChatTarget(ClientId, "DDRace Mod. Version: " GAME_VERSION); SendChatTarget(ClientId, "Official site: DDRace.info"); SendChatTarget(ClientId, "For more Info /cmdlist"); SendChatTarget(ClientId, "Or visit DDRace.info"); diff --git a/src/game/version.h b/src/game/version.h index 359f5ec0f..a5166f395 100644 --- a/src/game/version.h +++ b/src/game/version.h @@ -3,7 +3,6 @@ #ifndef GAME_VERSION_H #define GAME_VERSION_H -#define DDRACE_VERSION "0.5 trunk, DDRace 1.02a" -#define GAME_VERSION "0.5 trunk, DDRace 1.02a" +#define GAME_VERSION "0.5 trunk, 1.03a" #define GAME_NETVERSION "0.5 b67d1f1a1eea234e" #endif