mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2025-01-26 01:01:22 +01:00
fix: arraylist index out of bounds
This commit is contained in:
parent
895fb30417
commit
8b6301f90b
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user