mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 09:39:43 +01:00
Move skipblocks default setting to obj.init()
This commit is contained in:
parent
9296547feb
commit
4ea4a1e615
2 changed files with 2 additions and 1 deletions
|
@ -51,6 +51,7 @@ void entityclass::init()
|
|||
nentity = 0;
|
||||
nblocks = 0;
|
||||
|
||||
skipblocks = false;
|
||||
skipdirblocks = false;
|
||||
platformtile = 0;
|
||||
customplatformtile=0;
|
||||
|
|
|
@ -219,7 +219,7 @@ public:
|
|||
std::vector<int> customcollect;
|
||||
|
||||
int nblocks;
|
||||
bool skipblocks = false, skipdirblocks;
|
||||
bool skipblocks, skipdirblocks;
|
||||
|
||||
int platformtile;
|
||||
bool vertplatforms, horplatforms;
|
||||
|
|
Loading…
Reference in a new issue