This commit is contained in:
aozhiwei 2023-02-20 17:25:54 +08:00
parent 54b7efe873
commit a5d631b3d1

View File

@ -45,6 +45,16 @@ namespace mt
if (itr2 == itr->second.end()) { if (itr2 == itr->second.end()) {
abort(); abort();
} }
if (meta->buff1_meta && meta->floor2_buff_meta) {
itr2->second.push_back(std::make_tuple(meta->buff1_meta, meta->floor2_buff_meta));
} else {
if (meta->buff1_meta) {
itr2->second.push_back(std::make_tuple(meta->buff1_meta, nullptr));
}
}
if (meta->buff2_meta) {
itr2->second.push_back(std::make_tuple(meta->buff2_meta, nullptr));
}
} }
}); });
} }