Skip to content

Commit

Permalink
Comment suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
tigerw committed Oct 3, 2014
1 parent 48c99dc commit 79e9de8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Blocks/BlockTorch.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class cBlockTorchHandler :
a_BlockFace = FindSuitableFace(a_ChunkInterface, a_BlockX, a_BlockY, a_BlockZ); // Set a_BlockFace to a valid direction which will be converted later to a metadata
if (a_BlockFace == BLOCK_FACE_NONE)
{
// No attachable face found - don't place the torch
return false;
}
}
Expand Down Expand Up @@ -116,7 +117,7 @@ class cBlockTorchHandler :
{
if (cBlockInfo::FullyOccupiesVoxel(a_BlockType))
{
// Torches can be placed on full blocks unless their bottom side is clicked
// Torches can be placed on all sides of full blocks except the bottom
return (a_BlockFace != BLOCK_FACE_YM);
}
return false;
Expand All @@ -125,7 +126,7 @@ class cBlockTorchHandler :
}


/// Finds a suitable face to place the torch, returning BLOCK_FACE_NONE on failure
/** Finds a suitable face to place the torch, returning BLOCK_FACE_NONE on failure */
static eBlockFace FindSuitableFace(cChunkInterface & a_ChunkInterface, int a_BlockX, int a_BlockY, int a_BlockZ)
{
for (int i = BLOCK_FACE_YM; i <= BLOCK_FACE_XP; i++) // Loop through all directions
Expand Down

0 comments on commit 79e9de8

Please sign in to comment.