Skip to content

Commit ede261f

Browse files
authored
adding sanitize of nsbp space string (#99)
fix #97
1 parent 4abc48d commit ede261f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/TibiaCharactersCharacterV3.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -499,5 +499,8 @@ func TibiaDataParseKiller(data string) (string, bool, bool, string) {
499499
data = rs[0][2]
500500
}
501501

502+
// replacing \u00A0 with normal space
503+
data = TibiaDataSanitizeNbspSpaceString(data)
504+
502505
return data, isPlayer, isTraded, theSummon
503506
}

0 commit comments

Comments
 (0)