This commit is contained in:
aozhiwei 2021-01-20 18:25:26 +08:00
parent 57cd7d74d9
commit 93afef4361

View File

@ -457,6 +457,11 @@ int Room::CreateLoot(int equip_id, a8::Vec2 pos, int count, int equip_lv)
{
MetaData::Equip* equip_meta = MetaMgr::Instance()->GetEquip(equip_id);
if (equip_meta) {
#if 0
if (equip_meta->i->equip_type() == EQUIP_TYPE_SKIN) {
return;
}
#endif
Loot* entity = EntityFactory::Instance()->MakeLoot(AllocUniid());
entity->room = this;
entity->meta = equip_meta;
@ -3282,6 +3287,7 @@ void Room::NotifySysPiao(const std::string& msg, int color, int duration)
void Room::OnZombieAppear(Human* hum)
{
#if 0
if (hum->GetRace() == kZombieRace && hum->meta->i->level() == 3 && !sent_zombie_boss_notify) {
sent_zombie_boss_notify = true;
TouchPlayerList
@ -3296,6 +3302,7 @@ void Room::OnZombieAppear(Human* hum)
}
);
}
#endif
}
int Room::GetAliveCountByRace(RaceType_e race)