Skip to content

Commit

Permalink
Add typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lscgh committed Jan 25, 2024
1 parent cd166ec commit 2dd7d8c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ public CommandTicTacToe(Plugin plugin) {
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {

if(!(sender instanceof Player)) {
sender.sendMessage("This command may only be executed by players");
sender.sendMessage("This command mayo only be executed by players");
return true;
}

if(args.length > 0) {

if(args.length > CommandTicTacToe.maxValidArgCount) {
sender.sendMessage(ChatColor.RED + "Too many arguments for command '/tictactoe'!" + ChatColor.RESET);
sender.sendMessage(ChatColor.RED + "Too many arguments for command '/" + label + "'!" + ChatColor.RESET);
return false;
}

Expand Down

0 comments on commit 2dd7d8c

Please sign in to comment.