Determining if a tag is fuzzy should check for + too

This commit is contained in:
Celtic Minstrel 2020-10-24 15:12:29 -04:00
parent fab490cf60
commit d53fc3036d

View file

@ -36,7 +36,7 @@ wml_tag::wml_tag(const config& cfg)
, links_()
, conditions_()
, super_refs_()
, fuzzy_(name_.find_first_of("*?") != std::string::npos)
, fuzzy_(name_.find_first_of("*?+") != std::string::npos)
, any_tag_(cfg["any_tag"].to_bool())
{
if(max_ < 0) {