mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 22:48:18 +00:00
prevent enabling /team0mode
while practice mode is active
This commit is contained in:
parent
39dd2a552d
commit
083f7ba7ab
|
@ -1176,10 +1176,17 @@ void CGameContext::ConTeam0Mode(IConsole::IResult *pResult, void *pUserData)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pController->Teams().SetTeamFlock(Team, true);
|
if(pController->Teams().IsPractice(Team))
|
||||||
|
{
|
||||||
|
pSelf->SendChatTarget(pResult->m_ClientId, "Can't enable team 0 mode with practice mode on.");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
pController->Teams().SetTeamFlock(Team, true);
|
||||||
|
|
||||||
str_format(aBuf, sizeof(aBuf), "'%s' enabled team 0 mode. This will make your team behave like team 0.", pSelf->Server()->ClientName(pResult->m_ClientId));
|
str_format(aBuf, sizeof(aBuf), "'%s' enabled team 0 mode. This will make your team behave like team 0.", pSelf->Server()->ClientName(pResult->m_ClientId));
|
||||||
pSelf->SendChatTeam(Team, aBuf);
|
pSelf->SendChatTeam(Team, aBuf);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue