1
This commit is contained in:
parent
ff6ad94b13
commit
6973bf987f
@ -291,7 +291,7 @@ void Incubator::SpawnWaveMon(int wave)
|
||||
for (int i = 0; i < content->enemys.size(); ++i) {
|
||||
room->xtimer.AddDeadLineTimerAndAttach
|
||||
(
|
||||
room->IsDestoryRoom() ? 0 : SERVER_FRAME_RATE * 2,
|
||||
i == 0 ? 0 : 1000 / FRAME_RATE_MS,
|
||||
a8::XParams()
|
||||
.SetSender(this)
|
||||
.SetParam1(content)
|
||||
|
@ -1659,7 +1659,13 @@ namespace MetaData
|
||||
|
||||
void PveGeminiContent::Init()
|
||||
{
|
||||
|
||||
{
|
||||
std::vector<std::string> strings;
|
||||
a8::Split(pb->enemy_id(), strings, '|');
|
||||
for (auto& str : strings) {
|
||||
enemys.push_back(a8::XValue(str));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void PveGeminiMode::Init()
|
||||
|
Loading…
x
Reference in New Issue
Block a user