Skip to content

Commit

Permalink
Merge pull request #84 from anntnzrb/command-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV authored Jun 6, 2024
2 parents eb4cbac + 70be4c3 commit c3f7811
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class GetPosCommand extends CommandBase implements TabCompleter {

public GetPosCommand() {
super("getposition", "Gives you the coordinates of a player", "/getposition <player>\n/getpos <player>", "nextron.getposition");
super("getposition", "Displays the coordinates of a player", "/getposition <player>\n/getpos <player>", "nextron.getposition");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class GodCommand extends CommandBase implements CommandExecutor, TabCompleter {

public GodCommand() {
super("god", "Makes you invulnerable", "/god [player]", "nextron.god");
super("god", "Toggles invulnerability for a player", "/god [player]", "nextron.god");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class HatCommand extends CommandBase {

public HatCommand() {
super("hat", "War the current item in your hand", "/hat\n/wear", "nextron.hat");
super("hat", "Wear the current item in your hand", "/hat\n/wear", "nextron.hat");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class HeadCommand extends CommandBase implements CommandExecutor, TabCompleter {

public HeadCommand() {
super("head", "Gives you the head of any player", "/head <player>", "nextron.head");
super("head", "Gives you the head of a player", "/head <player>", "nextron.head");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class HealCommand extends CommandBase implements CommandExecutor, TabCompleter {

public HealCommand() {
super("heal", "Fills up your hunger and hearts", "/heal [player]", "nextron.heal");
super("heal", "Fills up a player's hunger and hearts", "/heal [player]", "nextron.heal");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class NightVisionCommand extends CommandBase implements TabCompleter {

public NightVisionCommand() {
super("nightvision", "Allows you to toggle nightivision", "/nightvision [player]\n/nv [player]", "nextron.nightvision");
super("nightvision", "Toggle the night vision effect for a player", "/nightvision [player]\n/nv [player]", "nextron.nightvision");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class SudoCommand extends CommandBase implements CommandExecutor, TabCompleter {

public SudoCommand() {
super("sudo", "Forces a player to execute a command", "/sudo <player> <command>", "nextron.sudo");
super("sudo", "Forces a player to execute a given command", "/sudo <player> <command>", "nextron.sudo");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class VanishCommand extends CommandBase implements CommandExecutor, TabCompleter {

public VanishCommand() {
super("vanish", "Hides you form the tab list and other players can't see you", "/vanish [player]\n/v [player]", "nextron.vanish");
super("vanish", "Hides you from the tab list and other players can't see you", "/vanish [player]\n/v [player]", "nextron.vanish");
}

@Override
Expand Down

0 comments on commit c3f7811

Please sign in to comment.