Minor cleanup.

This commit is contained in:
Sebastian Hartte
2020-08-03 20:31:30 +02:00
parent 872d8d33cb
commit 62bbc32763
2 changed files with 2 additions and 4 deletions
@@ -93,8 +93,6 @@ public abstract class AEBaseContainer extends Container {
private boolean sentCustomName;
private int ticksSinceCheck = 900;
private IAEItemStack clientRequestedTargetItem = null;
// Slots that were created to represent the player inventory
private List<Slot> playerInventorySlots = null;
public AEBaseContainer(ContainerType<?> containerType, int id, final PlayerInventory ip, final TileEntity myTile,
final IPart myPart) {
@@ -24,8 +24,8 @@ import net.minecraftforge.items.IItemHandler;
public class PlayerInvSlot extends AppEngSlot {
public PlayerInvSlot(final IItemHandler par1iInventory, final int invSlot, final int x, final int y) {
super(par1iInventory, invSlot, x, y);
public PlayerInvSlot(final IItemHandler inv, final int invSlot, final int x, final int y) {
super(inv, invSlot, x, y);
this.setPlayerSide(true);
}