Fix crash when blowing dandelion because particles generated on wrong side

This commit is contained in:
Cheeserolls 2015-05-01 22:48:08 +01:00
parent 932a595ebd
commit c9df78da57
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class ItemBOPFlower extends ItemBOPBlock {
Vec3 vec = player.getLook(0.5F);
Random rnd = player.getRNG();
if (!player.worldObj.isRemote)
if (player.worldObj.isRemote)
{
for (int p = 0; p < 4; ++p)
{