Resolves FS-338

This commit is contained in:
Video
2022-11-13 06:40:36 -07:00
committed by Paul Reilly
parent eadbc504e5
commit 20f341ea45

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();
}