diff options
Diffstat (limited to 'src/Blocks/BlockGrass.h')
-rw-r--r-- | src/Blocks/BlockGrass.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockGrass.h b/src/Blocks/BlockGrass.h index 2bae49281..d91a6ef2e 100644 --- a/src/Blocks/BlockGrass.h +++ b/src/Blocks/BlockGrass.h @@ -111,8 +111,8 @@ private: return Survivability::CanSpread; } - // Grass turns back to dirt when the block Above it is not transparent or water. - // It does not turn to dirt when a snow layer is Above. + // Grass turns back to dirt when the block above it is not transparent or water. + // It does not turn to dirt when a snow layer is above. const auto Above = a_Chunk.GetBlock(AbovePos); if ( (Above != E_BLOCK_SNOW) && |