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

io.github.dailystruggle.rtp.common.commands.fill.FillSubCmd Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
package io.github.dailystruggle.rtp.common.commands.fill;

import io.github.dailystruggle.commandsapi.common.CommandsAPICommand;
import io.github.dailystruggle.rtp.common.commands.BaseRTPCmdImpl;
import io.github.dailystruggle.rtp.common.commands.parameters.RegionParameter;
import org.jetbrains.annotations.Nullable;

public abstract class FillSubCmd extends BaseRTPCmdImpl {
    public FillSubCmd(@Nullable CommandsAPICommand parent) {
        super(parent);
        addParameter("region", new RegionParameter("rtp.fill", "fill a specific region", (uuid, s) -> true));
    }

    @Override
    public String permission() {
        return "rtp.fill";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy