fix: arraylist index out of bounds

This commit is contained in:
WindLeaf_qwq 2021-11-26 10:33:27 +08:00 committed by GitHub
parent 895fb30417
commit 8b6301f90b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,8 +40,10 @@ public class CommandRandomenchant extends Subcommand {
if ((args.isEmpty() && sender instanceof Player) || !sender.hasPermission("ecoenchants.command.randomenchant.others")) {
player = (Player) sender;
} else {
} else if (!args.isEmpty()) {
player = Bukkit.getServer().getPlayer(args.get(0));
} else {
player = null
}
if (player == null) {