Turn obj.flags into an array instead of a vector

Since it's always fixed-size, there's no reason for it to be a vector.
This commit is contained in:
Misa
2020-07-02 18:22:19 -07:00
committed by Ethan Lee
parent 1258eb7bf4
commit 62203efb2c
4 changed files with 14 additions and 52 deletions

View File

@@ -182,7 +182,7 @@ public:
std::vector<blockclass> blocks;
std::vector<bool> flags;
bool flags[100];
std::vector<bool> collect;
std::vector<bool> customcollect;