All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.item.ItemSweetBerries Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.item;

import cn.nukkit.block.BlockSweetBerryBush;

public class ItemSweetBerries extends ItemEdible {

    public ItemSweetBerries() {
        this(0, 1);
    }

    public ItemSweetBerries(Integer meta) {
        this(meta, 1);
    }

    public ItemSweetBerries(Integer meta, int count) {
        super(SWEET_BERRIES, meta, count, "Sweet Berries");
        this.block = new BlockSweetBerryBush();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy