summaryrefslogtreecommitdiffstats
path: root/bukkit/src/main/java/com
diff options
context:
space:
mode:
authorMihaiChirculete <mihai.chirculete@tutanota.com>2022-06-18 09:20:24 +0300
committerGitHub <noreply@github.com>2022-06-18 09:20:24 +0300
commit3b45ca1e132d042fc0f4be3937c2e0d6a432e942 (patch)
tree8ae4c37f1ae064c6f627f3f90a38d14d332dc027 /bukkit/src/main/java/com
parent43060c06250967b5c33f34d9f4b319dc86ead2b1 (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')
-rw-r--r--bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminItemsCommandHandler.java2
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());