Fix ghost items when taking items out of a furnace

This commit is contained in:
Camotoy 2022-03-29 14:36:58 -04:00
parent 0067ba5bb9
commit f78d2d3d2a
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 2 additions and 1 deletions

View File

@ -152,6 +152,7 @@ public final class ClickPlan {
clickedItemStack,
changedItems
);
System.out.println(clickPacket);
session.sendDownstreamPacket(clickPacket);
}
@ -391,7 +392,7 @@ public final class ClickPlan {
public IntSet getAffectedSlots() {
IntSet affectedSlots = new IntOpenHashSet();
for (ClickAction action : plan) {
if (translator.getSlotType(action.slot) == SlotType.NORMAL && action.slot != Click.OUTSIDE_SLOT) {
if (translator.getSlotType(action.slot) != SlotType.OUTPUT && action.slot != Click.OUTSIDE_SLOT) {
affectedSlots.add(action.slot);
if (action.click.actionType == ContainerActionType.MOVE_TO_HOTBAR_SLOT) {
//TODO won't work if offhand is added