summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-12-13 19:11:34 +0100
committerHowaner <franzi.moos@googlemail.com>2014-12-13 19:11:34 +0100
commit9457f49c19954b4c59a921115a72d9699994b883 (patch)
treea4d01980b8684e9658d3026d2c614d4924f8591f
parentFixed leaves drops. (diff)
downloadcuberite-9457f49c19954b4c59a921115a72d9699994b883.tar
cuberite-9457f49c19954b4c59a921115a72d9699994b883.tar.gz
cuberite-9457f49c19954b4c59a921115a72d9699994b883.tar.bz2
cuberite-9457f49c19954b4c59a921115a72d9699994b883.tar.lz
cuberite-9457f49c19954b4c59a921115a72d9699994b883.tar.xz
cuberite-9457f49c19954b4c59a921115a72d9699994b883.tar.zst
cuberite-9457f49c19954b4c59a921115a72d9699994b883.zip
Diffstat (limited to '')
-rw-r--r--src/Chunk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index 3deb30bc2..ebf3689e3 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -1026,7 +1026,7 @@ void cChunk::GrowMelonPumpkin(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_Bl
ItemTypeToString(Soil).c_str()
);
// Place a randomly-facing produce:
- UnboundedRelFastSetBlock(a_RelX + x, a_RelY, a_RelZ + z, ProduceType, (NIBBLETYPE)(a_TickRandom.randInt(4) % 4));
+ UnboundedRelFastSetBlock(a_RelX + x, a_RelY, a_RelZ + z, ProduceType, 0);
break;
}
}