diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-15 09:38:02 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-15 09:38:02 +0200 |
commit | cd0271a2446e414017b948589db02151fbbfd543 (patch) | |
tree | 9079b86bc23ee453ac4140a41c4bf0641f8a38a1 /source | |
parent | Only spawn nether mobs in nether biome. (diff) | |
download | cuberite-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 |
Diffstat (limited to '')
-rw-r--r-- | source/cClientHandle.cpp | 2 |
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) { |