1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 05:58:30 +02:00

Move skipblocks default setting to obj.init()

This commit is contained in:
Fredrik Ljungdahl 2020-01-25 02:26:00 +01:00 committed by Ethan Lee
parent 9296547feb
commit 4ea4a1e615
2 changed files with 2 additions and 1 deletions

View File

@ -51,6 +51,7 @@ void entityclass::init()
nentity = 0;
nblocks = 0;
skipblocks = false;
skipdirblocks = false;
platformtile = 0;
customplatformtile=0;

View File

@ -219,7 +219,7 @@ public:
std::vector<int> customcollect;
int nblocks;
bool skipblocks = false, skipdirblocks;
bool skipblocks, skipdirblocks;
int platformtile;
bool vertplatforms, horplatforms;