Added flight mode ('F' button)

This commit is contained in:
MihailRis
2022-03-04 17:44:14 +03:00
committed by GitHub
parent 1dd9a72fb3
commit b6c328fe1d
7 changed files with 30 additions and 9 deletions
+2
View File
@@ -57,6 +57,7 @@ void setup_definitions() {
block->lightPassing = true;
block->skyLightPassing = true;
block->obstacle = false;
block->selectable = false;
Block::blocks[block->id] = block;
// STONE
@@ -106,6 +107,7 @@ void setup_definitions() {
block->lightPassing = true;
block->skyLightPassing = false;
block->obstacle = false;
block->selectable = false;
Block::blocks[block->id] = block;
}
#endif // DECLARATIONS_H