Skip to content

Commit

Permalink
update ger10 url
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrc6 committed Aug 29, 2023
1 parent f41fcfc commit d6dbb0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/game/client/components/menus_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3129,7 +3129,7 @@ void CMenus::RenderSettingsTClient(CUIRect MainView)
static CButtonContainer s_VerifyButton;
if(DoButton_Menu(&s_VerifyButton, Localize("Manual Verify"), 0, &ButtonVerify, 0, IGraphics::CORNER_ALL))
{
if(!open_link("https://ger10.ddnet.tw/"))
if(!open_link("https://ger10.ddnet.org/"))
{
dbg_msg("menus", "couldn't open link");
}
Expand Down
2 changes: 1 addition & 1 deletion src/game/client/components/verify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void CVerify::OnRender()

CTimeout Timeout{10000, 0, 8000, 10};
auto StartTime = time_get_nanoseconds();
CHttpRequest *pGet = HttpGet("https://ger10.ddnet.tw/").release();
CHttpRequest *pGet = HttpGet("https://ger10.ddnet.org/").release();
pGet->Timeout(Timeout);
IEngine::RunJobBlocking(pGet);
auto Time = std::chrono::duration_cast<std::chrono::milliseconds>(time_get_nanoseconds() - StartTime);
Expand Down
2 changes: 1 addition & 1 deletion src/game/editor/editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7487,7 +7487,7 @@ void CEditor::Init()
m_UI.SetPopupMenuClosedCallback([this]() {
m_PopupEventWasActivated = false;
});
m_RenderTools.Init(m_pGraphics, m_pTextRender);
m_RenderTools.Init(m_pGraphics, m_pTextRender, (CGameClient *)Kernel()->RequestInterface<IGameClient>());
m_ZoomEnvelopeX.Init(this);
m_ZoomEnvelopeY.Init(this);
m_Map.m_pEditor = this;
Expand Down

0 comments on commit d6dbb0a

Please sign in to comment.