This commit is contained in:
aozhiwei 2022-08-16 15:02:15 +08:00
parent 4a96efd8ad
commit 17a18939ef

View File

@ -70,7 +70,7 @@ namespace MetaData
buff_list.push_back(a8::XValue(str).GetInt()); buff_list.push_back(a8::XValue(str).GetInt());
} }
} }
{ if (!IsPveMap()) {
std::vector<std::string> strings; std::vector<std::string> strings;
a8::Split(i->refresh_robot(), strings, '|'); a8::Split(i->refresh_robot(), strings, '|');
if (strings.size() != 2) { if (strings.size() != 2) {
@ -116,7 +116,7 @@ namespace MetaData
first_safearea_center = a8::Vec2(a8::XValue(strings[0]).GetDouble(), first_safearea_center = a8::Vec2(a8::XValue(strings[0]).GetDouble(),
a8::XValue(strings[1]).GetDouble()); a8::XValue(strings[1]).GetDouble());
} }
if (i->player() < 10) { if (!IsPveMap() && i->player() < 10) {
A8_ABORT(); A8_ABORT();
} }
} }