summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-09-14 11:20:30 +0200
committerMattes D <github@xoft.cz>2015-09-14 11:20:30 +0200
commitd8161663640dccb6a86473c49b5c62f36f5659de (patch)
tree5a824cc5ae682de6d0332b6592fa20614cfdcdc1
parentFixed Lua output folders for Windows builds. (diff)
parentFixed flint drop rates from 1/30 to 1/10 to match the wiki. (diff)
downloadcuberite-d8161663640dccb6a86473c49b5c62f36f5659de.tar
cuberite-d8161663640dccb6a86473c49b5c62f36f5659de.tar.gz
cuberite-d8161663640dccb6a86473c49b5c62f36f5659de.tar.bz2
cuberite-d8161663640dccb6a86473c49b5c62f36f5659de.tar.lz
cuberite-d8161663640dccb6a86473c49b5c62f36f5659de.tar.xz
cuberite-d8161663640dccb6a86473c49b5c62f36f5659de.tar.zst
cuberite-d8161663640dccb6a86473c49b5c62f36f5659de.zip
-rw-r--r--src/Blocks/BlockGravel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Blocks/BlockGravel.h b/src/Blocks/BlockGravel.h
index eb101efe9..7bd68a050 100644
--- a/src/Blocks/BlockGravel.h
+++ b/src/Blocks/BlockGravel.h
@@ -19,7 +19,7 @@ public:
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
cFastRandom Random;
- if (Random.NextInt(30) == 0)
+ if (Random.NextInt(10) == 0)
{
a_Pickups.Add(E_ITEM_FLINT, 1, 0);
}