Replace 'Maelström' to prevent encoding problems

This commit is contained in:
azakhi 2018-08-20 21:34:16 +03:00
parent 387f08db85
commit 780081263c
1 changed files with 7 additions and 2 deletions

View File

@ -576,6 +576,11 @@ namespace Filtration.Parser.Services
}
}
// Replace 'Maelström' to prevent encoding problems in other editors
outputString.Replace("Maelström Staff", "Maelstr");
outputString.Replace("Maelström of Chaos", "Maelstr");
outputString.Replace("Maelström", "Maelstr");
return outputString;
}
}