Package net.minecraft.inventory
Class DoubleInventory
java.lang.Object
net.minecraft.inventory.DoubleInventory
- Mappings:
Namespace Name official bab
intermediary net/minecraft/class_1258
named net/minecraft/inventory/DoubleInventory
-
Field Summary
Fields inherited from interface net.minecraft.inventory.Inventory
MAX_COUNT_PER_STACK
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canPlayerUse
(PlayerEntity player) void
clear()
int
Returns the maximum number of items a stack can contain when placed inside this inventory.getStack
(int slot) Fetches the stack currently stored at the given slot.boolean
isEmpty()
boolean
boolean
Returns whether the given stack is a valid for the indicated slot position.void
void
onClose
(PlayerEntity player) void
onOpen
(PlayerEntity player) removeStack
(int slot) Removes the stack currently stored at the indicated slot.removeStack
(int slot, int amount) Removes a specific number of items from the given slot.void
int
size()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minecraft.inventory.Inventory
containsAny, containsAny, count
-
Field Details
-
first
- Mappings:
Namespace Name Mixin selector official b
Lbab;b:Lbac;
intermediary field_5769
Lnet/minecraft/class_1258;field_5769:Lnet/minecraft/class_1263;
named first
Lnet/minecraft/inventory/DoubleInventory;first:Lnet/minecraft/inventory/Inventory;
-
second
- Mappings:
Namespace Name Mixin selector official c
Lbab;c:Lbac;
intermediary field_5771
Lnet/minecraft/class_1258;field_5771:Lnet/minecraft/class_1263;
named second
Lnet/minecraft/inventory/DoubleInventory;second:Lnet/minecraft/inventory/Inventory;
-
-
Constructor Details
-
DoubleInventory
- Mappings:
Namespace Name Mixin selector official <init>
Lbab;<init>(Lbac;Lbac;)V
intermediary <init>
Lnet/minecraft/class_1258;<init>(Lnet/minecraft/class_1263;Lnet/minecraft/class_1263;)V
named <init>
Lnet/minecraft/inventory/DoubleInventory;<init>(Lnet/minecraft/inventory/Inventory;Lnet/minecraft/inventory/Inventory;)V
-
-
Method Details
-
size
public int size() -
isEmpty
public boolean isEmpty() -
isPart
- Mappings:
Namespace Name Mixin selector official a
Lbab;a(Lbac;)Z
intermediary method_5405
Lnet/minecraft/class_1258;method_5405(Lnet/minecraft/class_1263;)Z
named isPart
Lnet/minecraft/inventory/DoubleInventory;isPart(Lnet/minecraft/inventory/Inventory;)Z
-
getStack
Fetches the stack currently stored at the given slot. If the slot is empty, or is outside the bounds of this inventory, returns seeItemStack.EMPTY
. -
removeStack
Removes a specific number of items from the given slot.- Specified by:
removeStack
in interfaceInventory
- Returns:
- the removed items as a stack
- Mappings:
Namespace Name Mixin selector official a
Lbac;a(II)Lcax;
intermediary method_5434
Lnet/minecraft/class_1263;method_5434(II)Lnet/minecraft/class_1799;
named removeStack
Lnet/minecraft/inventory/Inventory;removeStack(II)Lnet/minecraft/item/ItemStack;
-
removeStack
Removes the stack currently stored at the indicated slot.- Specified by:
removeStack
in interfaceInventory
- Returns:
- the stack previously stored at the indicated slot.
- Mappings:
Namespace Name Mixin selector official b
Lbac;b(I)Lcax;
intermediary method_5441
Lnet/minecraft/class_1263;method_5441(I)Lnet/minecraft/class_1799;
named removeStack
Lnet/minecraft/inventory/Inventory;removeStack(I)Lnet/minecraft/item/ItemStack;
-
setStack
-
getMaxCountPerStack
public int getMaxCountPerStack()Returns the maximum number of items a stack can contain when placed inside this inventory. No slots may have more than this number of items. It is effectively the stacking limit for this inventory's slots.- Specified by:
getMaxCountPerStack
in interfaceInventory
- Returns:
- the max
count
of item stacks in this inventory - Mappings:
Namespace Name Mixin selector official O_
Lbac;O_()I
intermediary method_5444
Lnet/minecraft/class_1263;method_5444()I
named getMaxCountPerStack
Lnet/minecraft/inventory/Inventory;getMaxCountPerStack()I
-
markDirty
public void markDirty() -
canPlayerUse
- Specified by:
canPlayerUse
in interfaceInventory
- Mappings:
Namespace Name Mixin selector official a
Lbac;a(Lbuc;)Z
intermediary method_5443
Lnet/minecraft/class_1263;method_5443(Lnet/minecraft/class_1657;)Z
named canPlayerUse
Lnet/minecraft/inventory/Inventory;canPlayerUse(Lnet/minecraft/entity/player/PlayerEntity;)Z
-
onOpen
- Specified by:
onOpen
in interfaceInventory
- Mappings:
Namespace Name Mixin selector official d_
Lbac;d_(Lbuc;)V
intermediary method_5435
Lnet/minecraft/class_1263;method_5435(Lnet/minecraft/class_1657;)V
named onOpen
Lnet/minecraft/inventory/Inventory;onOpen(Lnet/minecraft/entity/player/PlayerEntity;)V
-
onClose
- Specified by:
onClose
in interfaceInventory
- Mappings:
Namespace Name Mixin selector official c_
Lbac;c_(Lbuc;)V
intermediary method_5432
Lnet/minecraft/class_1263;method_5432(Lnet/minecraft/class_1657;)V
named onClose
Lnet/minecraft/inventory/Inventory;onClose(Lnet/minecraft/entity/player/PlayerEntity;)V
-
isValid
Returns whether the given stack is a valid for the indicated slot position. -
clear
public void clear()
-