From 842c9d1411f17a18e96199ac3392906651429da1 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Thu, 26 Apr 2018 16:33:22 -0400 Subject: [PATCH] Fixed the Alchemy Array from voiding items when broken when it shouldn't have. --- changelog.txt | 6 ++++++ .../java/WayofTime/bloodmagic/tile/TileAlchemyArray.java | 6 +----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index 36548cc2..0ee1e6e0 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 ------------------------------------------------------ diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java index a8f0ff7c..c1c82c2c 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java @@ -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()