[Bleeding] Made ItemStack constructors not default to an amount of 0. Fixes BUKKIT-610
By: Celtic Minstrel <celtic.minstrel.ca@some.place>
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user