dschu012/d2lootfilter

SetName Color options not working in .4?

BinaryNebula opened this issue · 2 comments

First I just wanted to say fantastic loot filter and thanks for making it compatible with 1.14d, seems to be the only filter available with compatibility. I am currently modifying the example filter to better suit me and having issues with the item.filter config coloring the {Name} parameter.

For instance the default filter has:

Show
Rune in El-Fal
SetName {Orange}{Name}

But all my runes are displaying with white names.
image

If I add characters between Orange and Name it will properly change those characters.
image

Not sure if this is an issue with my syntax, the filter file, or something different in .4?

I imagine it has to do with

Show
    Rarity < Magic
    SetName {White}{Name}
Continue

up above. so the name is really being set to {Orange}{White}{Name}. the best way to try to debug issues like this is to type /debug into chat for more details. It'll tell you what rules were applied to an item. If you want to override it with orange, maybe move the rune styles above General Metadata section in the filter.

Ah fantastic good to know. Thank for the fast response looks good now.