Make obj.customcollect a vector of bools

It's already treated as a vector of bools, so might as well formally
declare it as that.
This commit is contained in:
Misa
2020-04-08 23:58:03 -07:00
committed by Ethan Lee
parent 8507bdc65d
commit 17a64aee7a
4 changed files with 9 additions and 9 deletions

View File

@@ -186,7 +186,7 @@ public:
std::vector<blockclass> blocks;
std::vector<bool> flags;
std::vector<bool> collect;
std::vector<int> customcollect;
std::vector<bool> customcollect;
bool skipblocks, skipdirblocks;