Skip to content

Commit ebb61f8

Browse files
committed
Fix slots loaded mixin
1 parent dfacc21 commit ebb61f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/com/lambda/mixin/render/ScreenHandlerMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
@Mixin(ScreenHandler.class)
1616
public class ScreenHandlerMixin {
17-
@Inject(method = "updateSlotStacks", at = @At("HEAD"))
17+
@Inject(method = "updateSlotStacks", at = @At("TAIL"))
1818
private void onUpdateSlotStacksHead(int revision, List<ItemStack> stacks, ItemStack cursorStack, CallbackInfo ci) {
1919
EventFlow.post(new ScreenHandlerEvent.Loaded(revision, stacks, cursorStack));
2020
}

0 commit comments

Comments
 (0)