Skip to content

Commit

Permalink
Fix help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicallyCoded committed Jun 8, 2022
1 parent 738641c commit 3917183
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ public void sendHelp(CommandSender sender) {
sender.sendMessage(
MessageData.getPluginPrefix() + ChatColor.GRAY + "InventoryRollbackPlus - by TechnicallyCoded\n" +
ChatColor.WHITE + " Available Commands:\n" +
ChatColor.WHITE + " /ir restore [player]" + ChatColor.GRAY + " - Open rollback GUI for optional [player]\n" +
ChatColor.WHITE + " /ir forcebackup <all/player> [player]" + ChatColor.GRAY + " - Create a forced save of a player's inventory\n" +
ChatColor.WHITE + " /ir enable" + ChatColor.GRAY + " - Enable the plugin\n" +
ChatColor.WHITE + " /ir disable" + ChatColor.GRAY + " - Disable the plugin\n" +
ChatColor.WHITE + " /ir reload" + ChatColor.GRAY + " - Reload the plugin\n" +
ChatColor.WHITE + " /ir help" + ChatColor.GRAY + " - Get this message\n" +
ChatColor.WHITE + " /ir version" + ChatColor.GRAY + " - Get plugin info & version\n");
ChatColor.WHITE + " /irp restore [player]" + ChatColor.GRAY + " - Open rollback GUI for optional [player]\n" +
ChatColor.WHITE + " /irp forcebackup <all/player> [player]" + ChatColor.GRAY + " - Create a forced save of a player's inventory\n" +
ChatColor.WHITE + " /irp enable" + ChatColor.GRAY + " - Enable the plugin\n" +
ChatColor.WHITE + " /irp disable" + ChatColor.GRAY + " - Disable the plugin\n" +
ChatColor.WHITE + " /irp reload" + ChatColor.GRAY + " - Reload the plugin\n" +
ChatColor.WHITE + " /irp help" + ChatColor.GRAY + " - Get this message\n" +
ChatColor.WHITE + " /irp version" + ChatColor.GRAY + " - Get plugin info & version\n");
}

}

0 comments on commit 3917183

Please sign in to comment.