This commit is contained in:
aozhiwei 2023-05-31 14:31:12 +08:00
parent e1a384aae8
commit 1f1b1e596a
2 changed files with 3 additions and 1 deletions

View File

@ -46,7 +46,7 @@ namespace mtb
std::string boss_; std::string boss_;
public: public:
std::bitset<9> __flags__; std::bitset<10> __flags__;
}; };
}; };

View File

@ -20,8 +20,10 @@ SandTable::SandTable(Room* room): room_(room)
{ {
if (a8::TIMER_EXEC_EVENT == event) { if (a8::TIMER_EXEC_EVENT == event) {
room->LockRoom(); room->LockRoom();
#if 0
room->CombineTeam(); room->CombineTeam();
room->FillTeam(); room->FillTeam();
#endif
} }
}, },
&room->xtimer_attacher_); &room->xtimer_attacher_);