Add default auction house command

This commit is contained in:
Ryder Belserion 2023-07-20 22:23:41 -04:00
parent ae0959c028
commit 3021ef6c45
No known key found for this signature in database
GPG Key ID: 6F86975AD74B46E5
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package com.badbones69.crazyauctions.commands;
import com.badbones69.crazyauctions.CrazyAuctions;
import com.badbones69.crazyauctions.api.frame.command.CommandContext;
import com.badbones69.crazyauctions.api.frame.command.CommandEngine;
import org.bukkit.plugin.java.JavaPlugin;
import java.util.Collections;
public class AuctionCommand extends CommandEngine {
private final CrazyAuctions plugin = JavaPlugin.getPlugin(CrazyAuctions.class);
protected AuctionCommand() {
super("auctions", "Opens the auction house", "/crazyauctions:auctions", Collections.emptyList());
}
@Override
protected void perform(CommandContext context, String[] args) {
}
}