Skip to content

Commit

Permalink
put domination messages back in the center
Browse files Browse the repository at this point in the history
  • Loading branch information
sabianroberts committed Oct 1, 2023
1 parent b6a371b commit 6c44764
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions binary/dlls/agdom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ void AgDOMControlPoint::Capture(CBasePlayer* pPlayer, const char* szTeamName)
char szText[300];
sprintf(szText, "%s captured %s!", STRING(pPlayer->pev->netname), m_szLocation);
AgConsole(szText);
UTIL_ClientPrintAll(HUD_PRINTTALK, szText);
UTIL_ClientPrintAll(HUD_PRINTCENTER, szText);
}

void AgDOMControlPoint::ChangeControllingTeam(const char* szTeamName)
Expand Down Expand Up @@ -381,9 +381,9 @@ void AgDOMControlPoint::Think(void)
// a neutral state.
if (m_iConsecutiveScores >= ag_dom_resetscorelimit.value) {
char szText[201];
sprintf(szText, "Control point available at %s", m_szLocation);
sprintf(szText, "Flag available at %s", m_szLocation);
AgConsole(szText);
UTIL_ClientPrintAll(HUD_PRINTTALK, szText);
UTIL_ClientPrintAll(HUD_PRINTCENTER, szText);
Reset();
}

Expand Down
Binary file modified maps/Mall.rmf
Binary file not shown.

0 comments on commit 6c44764

Please sign in to comment.