From a2de7c2bb1f671ce0b467d9af1b82c4e1ce3ac8d Mon Sep 17 00:00:00 2001 From: Bond-009 Date: Fri, 5 Jan 2018 13:49:08 +0100 Subject: Sugar cane can be near frosted ice (#4133) --- src/Blocks/BlockSugarcane.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Blocks/BlockSugarcane.h b/src/Blocks/BlockSugarcane.h index 7e2a0c0a5..1322987f5 100644 --- a/src/Blocks/BlockSugarcane.h +++ b/src/Blocks/BlockSugarcane.h @@ -56,7 +56,7 @@ public: // Too close to the edge, cannot simulate return true; } - if (IsBlockWater(BlockType)) + if (IsBlockWater(BlockType) || (BlockType == E_BLOCK_FROSTED_ICE)) { return true; } -- cgit v1.2.3