diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-09-09 20:28:50 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-09-09 20:28:50 +0200 |
commit | 30ac3f583849f68ea7a29df5be6c53b3ef1fe26d (patch) | |
tree | 636b62f5bc6159b617f7f11af5db7a86d40a237f /source/Simulator | |
parent | A few Minecart fixes (diff) | |
download | cuberite-30ac3f583849f68ea7a29df5be6c53b3ef1fe26d.tar cuberite-30ac3f583849f68ea7a29df5be6c53b3ef1fe26d.tar.gz cuberite-30ac3f583849f68ea7a29df5be6c53b3ef1fe26d.tar.bz2 cuberite-30ac3f583849f68ea7a29df5be6c53b3ef1fe26d.tar.lz cuberite-30ac3f583849f68ea7a29df5be6c53b3ef1fe26d.tar.xz cuberite-30ac3f583849f68ea7a29df5be6c53b3ef1fe26d.tar.zst cuberite-30ac3f583849f68ea7a29df5be6c53b3ef1fe26d.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Simulator/SandSimulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Simulator/SandSimulator.cpp b/source/Simulator/SandSimulator.cpp index f4f0cdc80..87fb83357 100644 --- a/source/Simulator/SandSimulator.cpp +++ b/source/Simulator/SandSimulator.cpp @@ -258,7 +258,7 @@ void cSandSimulator::FinishFalling( // Create a pickup instead: cItems Pickups; Pickups.Add((ENUM_ITEM_ID)a_FallingBlockType, 1, a_FallingBlockMeta); - a_World->SpawnItemPickups(Pickups, (double)a_BlockX + 0.5, (double)a_BlockY + 0.5, (double)a_BlockZ + 0.5, 0); + a_World->SpawnItemPickups(Pickups, (double)a_BlockX + 0.5, (double)a_BlockY + 0.5, (double)a_BlockZ + 0.5); } |