This commit is contained in:
aozhiwei 2020-07-16 11:21:42 +08:00
parent 6995c93b09
commit 583a83d013

View File

@ -2878,19 +2878,14 @@ void Room::ShuaLastGas()
bool Room::IsMiniRoom()
{
#if 0
if (GetRoomType() == RT_NewBrid ||
GetRoomType() == RT_MidBrid) {
if (a8::BetweenDays(Global::g_nowtime, creator_register_time_) > 0) {
return false;
}
}
#endif
#if 1
return false;
#else
return
GetRoomType() == RT_NewBrid ||
GetRoomType() == RT_MidBrid ||
GetRoomType() == RT_OldBrid1;
#endif
}
size_t Room::GetRoomMaxPlayerNum()