mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-22 11:53:29 +01:00
Ported 87ecc7f74e
to 1.18
This commit is contained in:
parent
219bf0e00a
commit
d0d0045825
3 changed files with 11 additions and 8 deletions
|
@ -172,7 +172,7 @@ public class ItemTerminalBlockEntity extends BlockEntity implements IPipeConnect
|
|||
return stack.getCount() - ret.getRight().getCount();
|
||||
}
|
||||
|
||||
protected Player[] getLookingPlayers() {
|
||||
public Player[] getLookingPlayers() {
|
||||
return this.level.players().stream().filter(p -> p.containerMenu instanceof ItemTerminalContainer container && container.tile == this).toArray(Player[]::new);
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,8 @@ public class CraftingTerminalContainer extends ItemTerminalContainer {
|
|||
this.craftResult = new ResultContainer() {
|
||||
@Override
|
||||
public void setChanged() {
|
||||
CraftingTerminalContainer.this.slotsChanged(this);
|
||||
for (var player : CraftingTerminalContainer.this.getTile().getLookingPlayers())
|
||||
player.containerMenu.slotsChanged(this);
|
||||
}
|
||||
};
|
||||
this.addSlot(new ResultSlot(player, this.craftInventory, this.craftResult, 0, 25, 77));
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package de.ellpeck.prettypipes.terminal.containers;
|
||||
|
||||
import net.minecraft.world.entity.player.StackedContents;
|
||||
import net.minecraft.world.inventory.AbstractContainerMenu;
|
||||
import net.minecraft.world.inventory.CraftingContainer;
|
||||
import net.minecraft.world.item.ItemStack;
|
||||
import net.minecraftforge.items.ItemStackHandler;
|
||||
|
@ -9,9 +8,9 @@ import net.minecraftforge.items.ItemStackHandler;
|
|||
public class WrappedCraftingInventory extends CraftingContainer {
|
||||
|
||||
private final ItemStackHandler items;
|
||||
private final AbstractContainerMenu eventHandler;
|
||||
private final CraftingTerminalContainer eventHandler;
|
||||
|
||||
public WrappedCraftingInventory(ItemStackHandler items, AbstractContainerMenu eventHandlerIn, int width, int height) {
|
||||
public WrappedCraftingInventory(ItemStackHandler items, CraftingTerminalContainer eventHandlerIn, int width, int height) {
|
||||
super(eventHandlerIn, width, height);
|
||||
this.eventHandler = eventHandlerIn;
|
||||
this.items = items;
|
||||
|
@ -47,15 +46,18 @@ public class WrappedCraftingInventory extends CraftingContainer {
|
|||
public ItemStack removeItem(int index, int count) {
|
||||
var slotStack = this.items.getStackInSlot(index);
|
||||
var ret = !slotStack.isEmpty() && count > 0 ? slotStack.split(count) : ItemStack.EMPTY;
|
||||
if (!ret.isEmpty())
|
||||
this.eventHandler.slotsChanged(this);
|
||||
if (!ret.isEmpty()) {
|
||||
for (var player : this.eventHandler.getTile().getLookingPlayers())
|
||||
player.containerMenu.slotsChanged(this);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setItem(int index, ItemStack stack) {
|
||||
this.items.setStackInSlot(index, stack);
|
||||
this.eventHandler.slotsChanged(this);
|
||||
for (var player : this.eventHandler.getTile().getLookingPlayers())
|
||||
player.containerMenu.slotsChanged(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue