-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ChiyodaXiaoYi
committed
Nov 16, 2023
1 parent
0bc9407
commit 369e9ce
Showing
8 changed files
with
179 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/main/java/com/github/yufiriamazenta/craftorithm/cmd/subcmd/DisableRecipeCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.github.yufiriamazenta.craftorithm.cmd.subcmd; | ||
|
||
import crypticlib.command.ISubCmdExecutor; | ||
import org.bukkit.command.CommandSender; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public final class DisableRecipeCommand extends AbstractSubCommand { | ||
|
||
public static final DisableRecipeCommand INSTANCE = new DisableRecipeCommand(); | ||
|
||
private DisableRecipeCommand() { | ||
super("disable", "craftorithm.command.disable"); | ||
} | ||
|
||
@Override | ||
public boolean onCommand(CommandSender sender, List<String> args) { | ||
//TODO | ||
return super.onCommand(sender, args); | ||
} | ||
|
||
@Override | ||
public List<String> onTabComplete(CommandSender sender, List<String> args) { | ||
//TODO | ||
return super.onTabComplete(sender, args); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.