We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f35fb8 commit 82a570fCopy full SHA for 82a570f
1 file changed
logic/Hints.cpp
@@ -870,7 +870,7 @@ HintError generateHints(WorldPool& worlds)
870
std::string placementOption = hintPlacementOptions[i % hintPlacementOptions.size()];
871
// add the hint location to that placement option
872
hintsForCategory[placementOption].push_back(hint);
873
- LOG_TO_DEBUG("Hint \"" + hint.text["English"] + "\" will be given to " + placementOption);
+ LOG_TO_DEBUG("Hint \"" + Utility::Str::toUTF8(hint.text["English"]) + "\" will be given to " + placementOption);
874
++i;
875
}
876
0 commit comments