feat(protections): block receive pickup (#933)

This commit is contained in:
Johann
2023-02-04 23:20:49 +01:00
committed by GitHub
parent 4c45d40df1
commit fa7e5e5a34
7 changed files with 32 additions and 1 deletions

View File

@ -45,6 +45,9 @@ 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);
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::EndGroup();
}