summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-06-15 09:38:02 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-06-15 09:38:02 +0200
commitcd0271a2446e414017b948589db02151fbbfd543 (patch)
tree9079b86bc23ee453ac4140a41c4bf0641f8a38a1
parentOnly spawn nether mobs in nether biome. (diff)
downloadcuberite-cd0271a2446e414017b948589db02151fbbfd543.tar
cuberite-cd0271a2446e414017b948589db02151fbbfd543.tar.gz
cuberite-cd0271a2446e414017b948589db02151fbbfd543.tar.bz2
cuberite-cd0271a2446e414017b948589db02151fbbfd543.tar.lz
cuberite-cd0271a2446e414017b948589db02151fbbfd543.tar.xz
cuberite-cd0271a2446e414017b948589db02151fbbfd543.tar.zst
cuberite-cd0271a2446e414017b948589db02151fbbfd543.zip
-rw-r--r--source/cClientHandle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cClientHandle.cpp b/source/cClientHandle.cpp
index 79fd6b34b..645eb673b 100644
--- a/source/cClientHandle.cpp
+++ b/source/cClientHandle.cpp
@@ -1049,7 +1049,7 @@ void cClientHandle::HandleBlockPlace(cPacket_BlockPlace * a_Packet)
}
}
- if (ClickedBlock == E_BLOCK_SNOW)
+ if ((ClickedBlock == E_BLOCK_SNOW) || (ClickedBlock == E_BLOCK_TALL_GRASS))
{
switch (a_Packet->m_Direction)
{