1
0

Made TNT pickups spawning chance 25%

This commit is contained in:
Tiger Wang
2013-11-27 22:03:04 +00:00
parent a6630d3239
commit 994e1d7335
2 changed files with 3 additions and 3 deletions

View File

@@ -1655,12 +1655,12 @@ void cChunkMap::DoExplosionAt(double a_ExplosionSize, double a_BlockX, double a_
default:
{
if (m_World->GetTickRandomNumber(10) == 5)
if (m_World->GetTickRandomNumber(4) == 4) // Around 25% chance of pickups
{
cItems Drops;
cBlockHandler * Handler = BlockHandler(Block);
Handler->ConvertToPickups(Drops, area.GetBlockMeta(bx + x, by + y, bz + z));
Handler->ConvertToPickups(Drops, area.GetBlockMeta(bx + x, by + y, bz + z)); // Stone becomes cobblestone, coal ore becomes coal, etc.
m_World->SpawnItemPickups(Drops, bx + x, by + y, bz + z);
}
area.SetBlockType(bx + x, by + y, bz + z, E_BLOCK_AIR);