Turns out it was the semicolons at the end of the lines the if statements were in. This took make me way longer to realize than it should've. :/

This commit is contained in:
2022-10-30 17:05:11 -04:00
parent 3aa203bac9
commit a0bec8bfc5
4 changed files with 20 additions and 18 deletions

View File

@@ -197,9 +197,9 @@ int main(int argc, char **argv)
cellular.SetNoiseType(FastNoiseLite::NoiseType_Cellular);
cellular.SetFrequency(.1F);
for(int bx = 0; bx < 16; bx++)
for(int bx = 0; bx < 1; bx++)
{
for(int bz = 0; bz < 16; bz++)
for(int bz = 0; bz < 1; bz++)
{
for(int x = 0; x < 16; x++)
{
@@ -216,7 +216,7 @@ int main(int argc, char **argv)
}
}
printf("\n0, 2, 0: %i", blockManager.isAir(0, 1, 0));
/*