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

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

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

import cn.nukkit.api.PowerNukkitXOnly;
import cn.nukkit.api.Since;


@PowerNukkitXOnly
@Since("1.19.50-r1")
public class ItemRecord5 extends ItemRecord {

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

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

    public ItemRecord5(Integer meta, int count) {
        super(RECORD_5, meta, count);
        name = "Music Disc 5";
    }

    @Override
    public String getSoundId() {
        return "record.5";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy