3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-30 09:08:09 +02:00

Fix ghost items when taking items out of a furnace

Dieser Commit ist enthalten in:
Camotoy 2022-03-29 14:36:58 -04:00
Ursprung 0067ba5bb9
Commit f78d2d3d2a
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 7EEFB66FE798081F

Datei anzeigen

@ -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