chore: remove chat profanity bypass (#1688)

Closes #1682
This commit is contained in:
Andreas Maerten
2023-07-11 23:14:46 +02:00
committed by GitHub
parent 098b15eca6
commit 17c8ab0e68
5 changed files with 1 additions and 31 deletions

View File

@ -137,9 +137,6 @@ namespace big
{
static char msg[256];
ImGui::Checkbox("AUTO_KICK_CHAT_SPAMMERS"_T.data(), &g.session.kick_chat_spammers);
ImGui::Checkbox("DISABLE_FILTER"_T.data(), &g.session.chat_force_clean);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Your sent chat messages will not be censored to the receivers"); // TODO: add translation
ImGui::Checkbox("LOG_CHAT_MSG"_T.data(), &g.session.log_chat_messages);
ImGui::Checkbox("LOG_TXT_MSG"_T.data(), &g.session.log_text_messages);
components::input_text_with_hint("##message", "Chat message", msg, sizeof(msg));