geforkt von Mirrors/Paper
SPIGOT-2213: Fix custom anvil inventory
Dieser Commit ist enthalten in:
Ursprung
d884ab38d8
Commit
7a6b1433e2
@ -143,6 +143,9 @@ public class CraftContainer extends Container {
|
||||
case HOPPER:
|
||||
setupHopper(top, bottom);
|
||||
break;
|
||||
case ANVIL:
|
||||
setupAnvil(top, bottom);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -241,7 +244,8 @@ public class CraftContainer extends Container {
|
||||
|
||||
private void setupEnchanting(IInventory top, IInventory bottom) {
|
||||
// This code copied from ContainerEnchantTable
|
||||
this.a((new Slot(top, 0, 25, 47)));
|
||||
this.a((new Slot(top, 0, 15, 47)));
|
||||
this.a((new Slot(top, 0, 35, 47)));
|
||||
|
||||
int row;
|
||||
|
||||
@ -300,6 +304,26 @@ public class CraftContainer extends Container {
|
||||
// End copy from ContainerHopper
|
||||
}
|
||||
|
||||
private void setupAnvil(IInventory top, IInventory bottom) {
|
||||
// This code copied from ContainerAnvil
|
||||
this.a(new Slot(top, 0, 27, 47));
|
||||
this.a(new Slot(top, 1, 76, 47));
|
||||
this.a(new Slot(top, 2, 134, 47));
|
||||
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 3; ++i) {
|
||||
for (int 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 ContainerAnvil
|
||||
}
|
||||
|
||||
public boolean a(EntityHuman entity) {
|
||||
return true;
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren