Skip to content

Commit

Permalink
fixed item pipes not dropping colored versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Aug 24, 2024
1 parent e07a415 commit d3016ab
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ public boolean sendItemStack(BlockEntityItemPipe<?> aSender) {

@Override
public void addInventoryDrops(List<ItemStack> drops) {
super.addInventoryDrops(drops);
for (int i = 0; i < inventory.getSize(); i++) {
ItemStack stack = inventory.getItem(i);
if (!stack.isEmpty()) drops.add(stack);
Expand Down

0 comments on commit d3016ab

Please sign in to comment.