From 6c54451e2a999958d76e82a3828b2cb756c2c87d Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sun, 11 Nov 2018 15:58:58 -0500 Subject: [PATCH] fixup --- 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 aaa764cbebe..1a031d54bf6 100644 --- a/src/serialization/schema/tag.cpp +++ b/src/serialization/schema/tag.cpp @@ -506,7 +506,7 @@ void wml_tag::key_iterator::ensure_valid_or_end() { void wml_tag::push_new_tag_conditions(std::queue q, const config& match, const wml_tag& tag) { for(const auto& condition : tag.conditions_) { if(condition.matches(match)) { - condition_queue.push(&condition); + q.push(&condition); } } }