Skip to content

Commit

Permalink
Determining if a tag is fuzzy should check for + too
Browse files Browse the repository at this point in the history
  • Loading branch information
CelticMinstrel committed Oct 24, 2020
1 parent fab490c commit d53fc30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serialization/schema/tag.cpp
Expand Up @@ -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) {
Expand Down

0 comments on commit d53fc30

Please sign in to comment.