From aff85462aac89ec0474ab624a276397633004920 Mon Sep 17 00:00:00 2001 From: def Date: Fri, 20 May 2016 18:36:32 +0200 Subject: [PATCH] Update messages a bit --- src/game/client/components/menus_browser.cpp | 2 +- src/game/server/ddracechat.cpp | 12 +++++------- src/game/server/gamecontext.cpp | 4 ++-- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/game/client/components/menus_browser.cpp b/src/game/client/components/menus_browser.cpp index 34d134a5c..097f5e084 100644 --- a/src/game/client/components/menus_browser.cpp +++ b/src/game/client/components/menus_browser.cpp @@ -1310,7 +1310,7 @@ void CMenus::RenderServerbrowser(CUIRect MainView) char aBuf[64]; if(str_comp(Client()->LatestVersion(), "0") != 0) { - str_format(aBuf, sizeof(aBuf), Localize("DDNet %s is out! Download it at ddnet.tw!"), Client()->LatestVersion()); + str_format(aBuf, sizeof(aBuf), Localize("DDNet %s is out! Download it at DDNet.tw!"), Client()->LatestVersion()); TextRender()->TextColor(1.0f, 0.4f, 0.4f, 1.0f); } else diff --git a/src/game/server/ddracechat.cpp b/src/game/server/ddracechat.cpp index 8cc44c675..a57c5ba50 100644 --- a/src/game/server/ddracechat.cpp +++ b/src/game/server/ddracechat.cpp @@ -18,9 +18,9 @@ void CGameContext::ConCredits(IConsole::IResult *pResult, void *pUserData) CGameContext *pSelf = (CGameContext *) pUserData; pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit", - "DDRaceNetwork is maintained by deen."); + "DDNet is run by the DDNet staff (DDNet.tw/staff)"); pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit", - "Many ideas from the great community,"); + "Great maps and many ideas from the great community"); pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit", "Help and code by eeeee, HMH, east, CookieMichal, Learath2,"); pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit", @@ -33,8 +33,6 @@ void CGameContext::ConCredits(IConsole::IResult *pResult, void *pUserData) "Based on DDRace by the DDRace developers,"); pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit", "which is a mod of Teeworlds by the Teeworlds developers."); - pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit", - "Check the changes on ddnet.tw"); } void CGameContext::ConInfo(IConsole::IResult *pResult, void *pUserData) @@ -47,11 +45,11 @@ void CGameContext::ConInfo(IConsole::IResult *pResult, void *pUserData) "Git revision hash: " GIT_SHORTREV_HASH); #endif pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "info", - "Official site: ddnet.tw"); + "Official site: DDNet.tw"); pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "info", - "For more Info /cmdlist"); + "For more info: /cmdlist"); pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "info", - "Or visit ddnet.tw"); + "Or visit DDNet.tw"); } void CGameContext::ConHelp(IConsole::IResult *pResult, void *pUserData) diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp index 5eafd0e5e..7fe01b815 100644 --- a/src/game/server/gamecontext.cpp +++ b/src/game/server/gamecontext.cpp @@ -919,7 +919,7 @@ void CGameContext::OnClientEnter(int ClientID) SendChat(-1, CGameContext::CHAT_ALL, aBuf); SendChatTarget(ClientID, "DDraceNetwork Mod. Version: " GAME_VERSION); - SendChatTarget(ClientID, "please visit https://ddnet.tw or say /info for more info"); + SendChatTarget(ClientID, "please visit DDNet.tw or say /info for more info"); if(g_Config.m_SvWelcome[0]!=0) SendChatTarget(ClientID,g_Config.m_SvWelcome); @@ -930,7 +930,7 @@ void CGameContext::OnClientEnter(int ClientID) if (g_Config.m_SvShowOthersDefault) { if (g_Config.m_SvShowOthers) - SendChatTarget(ClientID, "You can see other players. To disable this use the DDNet client and type /showothers ."); + SendChatTarget(ClientID, "You can see other players. To disable this use DDNet client and type /showothers ."); m_apPlayers[ClientID]->m_ShowOthers = true; }