mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-23 06:45:04 +02:00
Merge pull request #396 from GunfighterJ/2.9
Allow potion clear/apply commands to work
This commit is contained in:
@@ -43,11 +43,6 @@ public class Commandpotion extends EssentialsCommand
|
||||
throw new NotEnoughArgumentsException(_("potions", Util.joinList(potionslist.toArray())));
|
||||
}
|
||||
|
||||
if (args.length < 3)
|
||||
{
|
||||
throw new NotEnoughArgumentsException();
|
||||
}
|
||||
|
||||
if (stack.getType() == Material.POTION)
|
||||
{
|
||||
PotionMeta pmeta = (PotionMeta)stack.getItemMeta();
|
||||
@@ -65,6 +60,10 @@ public class Commandpotion extends EssentialsCommand
|
||||
effect.apply(user);
|
||||
}
|
||||
}
|
||||
else if (args.length < 3)
|
||||
{
|
||||
throw new NotEnoughArgumentsException();
|
||||
}
|
||||
else
|
||||
{
|
||||
final MetaItemStack mStack = new MetaItemStack(stack);
|
||||
|
Reference in New Issue
Block a user