dschu012 / d2lootfilter

MIT License
44 stars 26 forks source link

SetName Color options not working in .4? #15

Closed BinaryNebula closed 3 years ago

BinaryNebula commented 3 years ago

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?

dschu012 commented 3 years ago

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.

BinaryNebula commented 3 years ago

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