We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5808c10 commit c9c754dCopy full SHA for c9c754d
src/TibiaCharactersCharacterV3.go
@@ -330,8 +330,8 @@ func TibiaCharactersCharacterV3Impl(BoxContentHTML string) CharacterResponse {
330
DeathKillers := []Killers{}
331
DeathAssists := []Killers{}
332
333
- // store for reply later on..
334
- ReasonString := RemoveHtmlTag(subma1[0][2] + " at Level " + subma1[0][3] + " by " + subma1[0][4] + ".")
+ // store for reply later on.. and replacing \u00A0 with normal space
+ ReasonString := TibiaDataSanitizeNbspSpaceString(RemoveHtmlTag(subma1[0][2] + " at Level " + subma1[0][3] + " by " + subma1[0][4] + "."))
335
336
// if kill is with assist..
337
if strings.Contains(subma1[0][4], ". Assisted by ") {
0 commit comments