Replace 'Maelström' to prevent encoding problems
This commit is contained in:
parent
387f08db85
commit
780081263c
|
@ -574,8 +574,13 @@ namespace Filtration.Parser.Services
|
||||||
{
|
{
|
||||||
outputString += (!block.Enabled ? _disabledNewLine : _newLine) + blockItem.OutputText;
|
outputString += (!block.Enabled ? _disabledNewLine : _newLine) + blockItem.OutputText;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 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;
|
return outputString;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue