Merge pull request #2474 from Erbelding/master
Fixed flint drop rates from 1/30 to 1/10 to match the wiki.
This commit is contained in:
commit
d816166364
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user