Fixed the Alchemy Array from voiding items when broken when it shouldn't have.
This commit is contained in:
parent
151c1dfd67
commit
842c9d1411
|
@ -1,3 +1,9 @@
|
|||
------------------------------------------------------
|
||||
Version 2.2.10-94
|
||||
------------------------------------------------------
|
||||
- Fixed the Alchemy Array from voiding items when broken when it shouldn't have.
|
||||
- Fixed Blood Tank NBT transfer between item/tile form.
|
||||
|
||||
------------------------------------------------------
|
||||
Version 2.2.10
|
||||
------------------------------------------------------
|
||||
|
|
|
@ -118,14 +118,10 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche
|
|||
@Override
|
||||
public void dropItems()
|
||||
{
|
||||
if (!doDropIngredients)
|
||||
if (arrayEffect == null || doDropIngredients)
|
||||
{
|
||||
super.dropItems();
|
||||
}
|
||||
if (arrayEffect != null)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public boolean attemptCraft()
|
||||
|
|
Loading…
Reference in a new issue