This commit is contained in:
Celtic Minstrel 2018-11-11 15:58:58 -05:00
parent 2ee2f4d33f
commit 6c54451e2a

View File

@ -506,7 +506,7 @@ void wml_tag::key_iterator::ensure_valid_or_end() {
void wml_tag::push_new_tag_conditions(std::queue<const wml_tag*> 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);
}
}
}