Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-20 05:20:07 +01:00
[Bleeding] Made ItemStack constructors not default to an amount of 0. Fixes BUKKIT-610
Dieser Commit ist enthalten in:
Ursprung
76cc488402
Commit
83265005f6
@ -30,11 +30,11 @@ public class CraftItemStack extends ItemStack {
|
|||||||
|
|
||||||
/* 'Overwritten' constructors from ItemStack, yay for Java sucking */
|
/* 'Overwritten' constructors from ItemStack, yay for Java sucking */
|
||||||
public CraftItemStack(final int type) {
|
public CraftItemStack(final int type) {
|
||||||
this(type, 0);
|
this(type, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public CraftItemStack(final Material type) {
|
public CraftItemStack(final Material type) {
|
||||||
this(type, 0);
|
this(type, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public CraftItemStack(final int type, final int amount) {
|
public CraftItemStack(final int type, final int amount) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren