1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-07 16:23:13 +02:00

AntiMixedUTF8: change emoticon transition score from 1 to 0

You will still get a score of +1 if afterwards changing back to Latin
or anything else, but at least the Latin/anything -> Emoticon
transition is free now (score 0). And if ending with an emoji it
also means a score 0 (as far as this is concerned).
This commit is contained in:
Bram Matthys
2025-03-23 13:19:07 +01:00
parent 74e17b7a26
commit fafe16a673
+1 -1
View File
@@ -341,7 +341,7 @@ UnicodeBlocks unicode_blocks[UNICODE_BLOCK_COUNT] =
{0x1F100, 0x1F1FF, "Enclosed Alphanumeric Supplement", 1},
{0x1F200, 0x1F2FF, "Enclosed Ideographic Supplement", 1},
{0x1F300, 0x1F5FF, "Miscellaneous Symbols and Pictographs", 1},
{0x1F600, 0x1F64F, "Emoticons", 1},
{0x1F600, 0x1F64F, "Emoticons", 0},
{0x1F650, 0x1F67F, "Ornamental Dingbats", 1},
{0x1F680, 0x1F6FF, "Transport and Map Symbols", 1},
{0x1F700, 0x1F77F, "Alchemical Symbols", 1},