This commit is contained in:
aozhiwei 2021-05-12 13:49:34 +08:00
parent 8498500742
commit 8e47e80230
2 changed files with 7 additions and 3 deletions

View File

@ -1744,9 +1744,7 @@ void Room::AirDrop(int appear_time, int box_id, int airdrop_id)
},
&xtimer_attacher_.timer_list_);
++airdrop_times_;
}
if (thing_meta) {
ShuaMon(box_pos, thing_meta->airdrop_mon_list);
}
}
@ -3787,3 +3785,8 @@ void Room::ForwardGasRing(int n)
--n;
}
}
void Room::ShuaMon(const a8::Vec2& center, std::vector<int>& airdrop_mon_list)
{
}

View File

@ -255,6 +255,7 @@ private:
size_t GetRoomMaxPlayerNum();
void InitAndroidAI();
void ForwardGasRing(int n);
void ShuaMon(const a8::Vec2& center, std::vector<int>& airdrop_mon_list);
#ifdef DEBUG
void InitDebugInfo();