Compare commits

..

2 commits

Author SHA1 Message Date
Ell
bdd507885e update 2022-01-24 23:39:04 +01:00
Ell
d0d0045825 Ported 87ecc7f74e to 1.18 2022-01-24 23:37:27 +01:00
4 changed files with 12 additions and 9 deletions

View file

@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'
version = '1.10.4'
version = '1.10.5'
group = 'de.ellpeck.prettypipes' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'PrettyPipes'

View file

@ -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);
}

View file

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

View file

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