diff --git a/core-bukkit/src/main/java/cn/hamster3/mc/plugin/core/bukkit/command/lore/sub/LoreInfoCommand.java b/core-bukkit/src/main/java/cn/hamster3/mc/plugin/core/bukkit/command/lore/sub/LoreInfoCommand.java index 8cfae00..cef7a37 100644 --- a/core-bukkit/src/main/java/cn/hamster3/mc/plugin/core/bukkit/command/lore/sub/LoreInfoCommand.java +++ b/core-bukkit/src/main/java/cn/hamster3/mc/plugin/core/bukkit/command/lore/sub/LoreInfoCommand.java @@ -68,7 +68,7 @@ public class LoreInfoCommand extends ChildCommand { sender.sendMessage("§a物品 lore: "); for (int i = 0; i < lore.size(); i++) { String s = lore.get(i); - sender.sendMessage("§a" + i + ". §f" + s); + sender.sendMessage("§a" + (i + 1) + ". §f" + s); } } else { sender.sendMessage("§a物品 lore: 无");