Skip to content

Commit

Permalink
fuck
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBjoel2 authored Feb 17, 2024
1 parent 4d7b9a1 commit aa2c82b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class SlimeChunkPrinter
{
const bool isSlimeChunk = Util::isSlimeChunk(matrix, matrixX+i, matrixZ+j);
const bool isWithinSphere = Util::isChunkWithinSphere(i, j, farmHeight);
chunkCount+=isSlimeChunk;
chunkCount+=isSlimeChunk&isWithinSphere;
std::cout << (isSlimeChunk&isWithinSphere ? 'S' : ' ');
}
std::cout << std::endl;
Expand Down

0 comments on commit aa2c82b

Please sign in to comment.