Fixes some further seed-bleed type issues with hint generation.

This commit is contained in:
Christopher Leggett 2024-03-20 18:36:08 -04:00
parent 091258ad19
commit bfbeb19113
No known key found for this signature in database
GPG Key ID: 7093AE5FF7037D79
1 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,10 @@ const std::string& Hint::GetDistribution() {
void Hint::ResetVariables() {
hintedLocation = RC_UNKNOWN_CHECK;
text = Text{};
distribution = "";
hintedArea = RA_NONE;
hintType = HINT_TYPE_STATIC;
addedToPool = false;
}
}