diff options
| author | MihaiChirculete <mihai.chirculete@tutanota.com> | 2022-06-18 09:20:24 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-18 09:20:24 +0300 |
| commit | 3b45ca1e132d042fc0f4be3937c2e0d6a432e942 (patch) | |
| tree | 8ae4c37f1ae064c6f627f3f90a38d14d332dc027 /bukkit/src/main/java/com/leonardobishop | |
| parent | 43060c06250967b5c33f34d9f4b319dc86ead2b1 (diff) | |
Changed param to match rest of the plugin style
Co-authored-by: Leonardo Bishop <13875753+LMBishop@users.noreply.github.com>
Diffstat (limited to 'bukkit/src/main/java/com/leonardobishop')
| -rw-r--r-- | bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminItemsCommandHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminItemsCommandHandler.java b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminItemsCommandHandler.java index ea7491cb..81be5e83 100644 --- a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminItemsCommandHandler.java +++ b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminItemsCommandHandler.java @@ -35,7 +35,7 @@ public class AdminItemsCommandHandler implements CommandHandler { } sender.sendMessage(ChatColor.GRAY.toString() + plugin.getQuestItemRegistry().getAllItems().size() + " items imported."); sender.sendMessage(ChatColor.DARK_GRAY + "Import a new held item using /q a items import <id>."); - sender.sendMessage(ChatColor.DARK_GRAY + "Give a quest item to a player using /q a items give <PlayerName> <id> <amount>."); + sender.sendMessage(ChatColor.DARK_GRAY + "Give a quest item to a player using /q a items give <player> <id> <amount>."); } else if (args[2].equalsIgnoreCase("import") && sender instanceof Player) { Player player = (Player) sender; ItemStack held = new ItemStack(player.getItemInHand()); |
