patch ~nicknames with zwsp

This commit is contained in:
szy 2025-03-23 01:40:46 +01:00
parent 66210b0dc3
commit e1b7528b79

View file

@ -352,7 +352,7 @@ void cmd_fortune_h(int author, const char* args) {
*cur = toupper(*cur);
}
}
sendchatf("%s", sentence);
sendchatf("%s%s", sentence[0] == '~' ? "\u200b" : "", sentence); // zwsp as patch for ~nicknames
}
command_definition cmd_fortune = {
.keywords = "fortune fate",