-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from ADHDMC/enum-declaration-done-right
Code cleanup, make sure merges worked properly, fix enum declarations
- Loading branch information
Showing
15 changed files
with
286 additions
and
256 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
25 changes: 25 additions & 0 deletions
25
src/main/java/adhdmc/villagerinfo/Commands/SubCommands/InventoryCommand.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,25 @@ | ||
package adhdmc.villagerinfo.Commands.SubCommands; | ||
|
||
import adhdmc.villagerinfo.Commands.SubCommand; | ||
import org.bukkit.command.CommandSender; | ||
|
||
import java.util.List; | ||
|
||
public class InventoryCommand extends SubCommand { | ||
|
||
|
||
public InventoryCommand() { | ||
super("inv", "gets the inventory of the specified villager", "/vill inv <UUID>"); | ||
} | ||
|
||
|
||
@Override | ||
public void execute(CommandSender sender, String[] args) { | ||
|
||
} | ||
|
||
@Override | ||
public List<String> getSubcommandArguments(CommandSender sender, String[] args) { | ||
return null; | ||
} | ||
} |
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.