Resolves FS-338

This commit is contained in:
Video 2022-11-13 06:40:36 -07:00
parent 33146fa161
commit 35d53ece4e

View File

@ -251,9 +251,7 @@ public class Command_enchant extends FreedomCommand
return getEnchantments(item);
}
}
else if (args.length == 3)
{
if (args[0].equals("add"))
else if (args.length == 3 && args[0].equals("add"))
{
Enchantment enchantment = Enchantment.getByName(args[1].toUpperCase());
if (enchantment != null)
@ -268,7 +266,6 @@ public class Command_enchant extends FreedomCommand
}
}
}
}
return Collections.emptyList();
}