It seems to be the desired effect. The code switch the font to "blue" when the
item has at least 1 socket. Else it default to the "neon" font.
Probably due to changes, but the variable names don't match anymore the actual
color (blue is gray and neon is blue).
From src/items.c:373
// If the item has upgrade sockets, use a different color for the name.
if (ShowItem->upgrade_sockets.size) {
autostr_append(str, "%s", font_switchto_blue);
} else {
autostr_append(str, "%s", font_switchto_neon);
}
|