mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
SPIGOT-3114: Initialize custom SHULKER_BOX slots
This commit is contained in:
parent
4316a8c246
commit
d6aa73d16c
@ -12,6 +12,7 @@ import net.minecraft.server.EntityHuman;
|
||||
import net.minecraft.server.IInventory;
|
||||
import net.minecraft.server.PacketPlayOutOpenWindow;
|
||||
import net.minecraft.server.Slot;
|
||||
import net.minecraft.server.SlotShulkerBox;
|
||||
|
||||
public class CraftContainer extends Container {
|
||||
|
||||
@ -150,6 +151,9 @@ public class CraftContainer extends Container {
|
||||
case BEACON:
|
||||
setupBeacon(top, bottom);
|
||||
break;
|
||||
case SHULKER_BOX:
|
||||
setupShulkerBox(top, bottom);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -346,6 +350,29 @@ public class CraftContainer extends Container {
|
||||
// End copy from ContainerBeacon
|
||||
}
|
||||
|
||||
private void setupShulkerBox(IInventory top, IInventory bottom) {
|
||||
// This code is copied from ContainerShulkerBox
|
||||
int i;
|
||||
int j;
|
||||
|
||||
for (i = 0; i < 3; ++i) {
|
||||
for (j = 0; j < 9; ++j) {
|
||||
this.a((Slot) (new SlotShulkerBox(top, j + i * 9, 8 + j * 18, 18 + i * 18)));
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < 3; ++i) {
|
||||
for (j = 0; j < 9; ++j) {
|
||||
this.a(new Slot(bottom, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < 9; ++i) {
|
||||
this.a(new Slot(bottom, i, 8 + i * 18, 142));
|
||||
}
|
||||
// End copy from ContainerShulkerBox
|
||||
}
|
||||
|
||||
public boolean a(EntityHuman entity) {
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user