From d53fc3036ded9cb5dc49f92ae50ac538f5fba2cd Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sat, 24 Oct 2020 15:12:29 -0400 Subject: [PATCH] Determining if a tag is fuzzy should check for + too --- src/serialization/schema/tag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serialization/schema/tag.cpp b/src/serialization/schema/tag.cpp index 23493b137342..33c8698f5710 100644 --- a/src/serialization/schema/tag.cpp +++ b/src/serialization/schema/tag.cpp @@ -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) {