Cherrypicked @dschub's vein fix - thanks!
This commit is contained in:
parent
90c1c690a9
commit
4fdae8cbef
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ public class ItemAtomicDisassembler extends ItemEnergized
|
||||||
{
|
{
|
||||||
Coord4D coord = pointer.getFromSide(side);
|
Coord4D coord = pointer.getFromSide(side);
|
||||||
|
|
||||||
if(coord.exists(world) && checkID(coord.getBlock(world)) && coord.getMetadata(world) == stack.getItemDamage())
|
if(coord.exists(world) && checkID(coord.getBlock(world)) && (coord.getMetadata(world) == stack.getItemDamage() || (MekanismUtils.getOreDictName(stack).contains("logWood") && coord.getMetadata(world) % 4 == stack.getItemDamage() % 4)))
|
||||||
{
|
{
|
||||||
loop(coord);
|
loop(coord);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue