Adds some TODOs

This commit is contained in:
Kristian Knarvik 2022-02-19 18:29:38 +01:00
parent 2f559ce2af
commit 5bc62d5bc0
2 changed files with 4 additions and 0 deletions

View File

@ -9,6 +9,8 @@ public class ListCommand implements CommandExecutor {
@Override @Override
public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args) { public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args) {
//TODO: If no argument is given, list all paid sign names
//TODO: If an argument is given, output extensive information about the sign
return false; return false;
} }

View File

@ -9,6 +9,8 @@ public class ListConditionsCommand implements CommandExecutor {
@Override @Override
public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args) { public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args) {
//TODO: If a paid sign name is given, print a short overview over the conditions
//TODO: If a paid sign name and a line is given, display everything about the condition
return false; return false;
} }