Open allisonkong opened 1 year ago
I'm happy to work on this if you think it's a good idea fwiw.
Hmm, ChatEntry
already handles this somewhat (although it seems to be missing from sender
), seems like it is an oversight and should be handled before entries get logged. You can use the Text
class to standardize the player names.
I'm going to look at solving this tonight. Pretty sure this was my fault with #12 . Whoops.
I don't think this was ever fixed? It's still adding some odd squares instead of spaces for me
Here's what's happening:
U+00A0
(non breaking space) rather than the usualU+0020
space.U+00A0
doesn't matchU+0020
.As an example, I isolated a line from one of my logs:
Which translates to this: (ignore the endian-ness - the main thing to note is the use of
0xA0
inside "Small Luna")What do you think about simply replacing all
U+00A0
withU+0020
in the log output?