mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-10 10:10:22 +01:00
Add default auction house command
This commit is contained in:
parent
ae0959c028
commit
3021ef6c45
@ -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) {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user