2
0
mirror of synced 2025-01-24 15:28:58 +00:00

Fixes custom replacements

This commit is contained in:
benbierens 2024-07-03 19:11:21 +02:00
parent 8694bfe9be
commit 1f11c5d6b5
No known key found for this signature in database
GPG Key ID: 877D2C2E09A22F3A

View File

@ -50,7 +50,7 @@ namespace BiblioTech.Rewards
var result = msg;
foreach (var pair in replacements)
{
result.Replace(pair.Key, pair.Value);
result = result.Replace(pair.Key, pair.Value);
}
return result;
}