Fixed glitch with the Corrosive effect of the crushing ritual
This commit is contained in:
parent
0538f206bb
commit
c36b7fed9d
|
@ -148,11 +148,13 @@ public class RitualCrushing extends Ritual
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tile != null)
|
if (tile != null)
|
||||||
|
{
|
||||||
result = Utils.insertStackIntoTile(result, tile, EnumFacing.DOWN);
|
result = Utils.insertStackIntoTile(result, tile, EnumFacing.DOWN);
|
||||||
else
|
if (result != null && result.stackSize > 0)
|
||||||
Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, result);
|
{
|
||||||
|
Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, result);
|
||||||
if (result != null && result.stackSize > 0)
|
}
|
||||||
|
} else
|
||||||
{
|
{
|
||||||
Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, result);
|
Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, result);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue