Skip to content

Commit 49be076

Browse files
authored
Fix #925: Dupe with item containing items in machine slots (#926)
1 parent a52a091 commit 49be076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/aztech/modern_industrialization/items/ItemContainingItemHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ default boolean handleOtherStackedOnMe(ItemStack stackBarrel, ItemStack itemStac
5454
Mutable<ItemStack> ref = new MutableObject<>(itemStack);
5555
boolean result = handleClick(player, stackBarrel, ref);
5656
cursorStackReference.set(ref.getValue());
57-
slot.setChanged();
57+
slot.set(stackBarrel);
5858
return result;
5959
} else {
6060
return false;

0 commit comments

Comments
 (0)