chore(debug misc translations) (#1331)

This commit is contained in:
Rxann
2023-06-10 09:21:57 -04:00
committed by GitHub
parent 5f7b3569d3
commit ffc955f6c1
2 changed files with 25 additions and 25 deletions

View File

@ -45,10 +45,10 @@ namespace big
ImGui::Checkbox("LESSEN_BREAKUP_KICK"_T.data(), &g.protections.lessen_breakups);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("LESSEN_BREAKUP_KICK_DESCRIPTION"_T.data());
ImGui::Checkbox("Receive Pickup", &g.protections.receive_pickup);
ImGui::Checkbox("RECEIVE_PICKUP"_T.data(), &g.protections.receive_pickup);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("This prevents any pickup from the ground such as unwanted money drops.\nAttention: Normal pickups are also no longer possible.");
ImGui::Checkbox("Admin Check", &g.protections.admin_check);
ImGui::Checkbox("ADMIN_CHECK"_T.data(), &g.protections.admin_check);
ImGui::EndGroup();
}