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

net.minestom.server.entity.metadata.minecart.CommandBlockMinecartMeta Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.entity.metadata.minecart;

import net.kyori.adventure.text.Component;
import net.minestom.server.entity.Entity;
import net.minestom.server.entity.Metadata;
import net.minestom.server.entity.MetadataHolder;
import org.jetbrains.annotations.NotNull;

public class CommandBlockMinecartMeta extends AbstractMinecartMeta {
    public static final byte OFFSET = AbstractMinecartMeta.MAX_OFFSET;
    public static final byte MAX_OFFSET = OFFSET + 2;

    public CommandBlockMinecartMeta(@NotNull Entity entity, @NotNull MetadataHolder metadata) {
        super(entity, metadata);
    }

    public @NotNull String getCommand() {
        return super.metadata.getIndex(OFFSET, "");
    }

    public void setCommand(@NotNull String value) {
        super.metadata.setIndex(OFFSET, Metadata.String(value));
    }

    public @NotNull Component getLastOutput() {
        return super.metadata.getIndex(OFFSET + 1, Component.empty());
    }

    public void setLastOutput(@NotNull Component value) {
        super.metadata.setIndex(OFFSET + 1, Metadata.Chat(value));
    }

    @Override
    public int getObjectData() {
        return 6;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy