implement agitha hint sign

This commit is contained in:
gymnast86
2026-08-28 19:06:21 -07:00
parent c2de6524c8
commit f0086952d2
18 changed files with 325 additions and 72 deletions
@@ -95,6 +95,9 @@ namespace randomizer::utility::str {
const std::string& replacementStr,
uint32_t count) {
std::string retStr = originalStr;
if (oldStr.empty()) {
return retStr;
}
auto startPos = retStr.find(oldStr);
for (int i = 0; i < count; ++i) {
if (startPos == std::string::npos) {