diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java b/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java index c691e9572..b2128a5b2 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandfeed.java @@ -25,7 +25,7 @@ public class Commandfeed extends EssentialsCommand { throw new PlayerNotFoundException(); } - if (!user.isAuthorized("essentials.heal.cooldown.bypass")) + if (!user.isAuthorized("essentials.feed.cooldown.bypass")) { user.healCooldown(); } @@ -33,7 +33,7 @@ public class Commandfeed extends EssentialsCommand return; } - if (!user.isAuthorized("essentials.heal.cooldown.bypass")) + if (!user.isAuthorized("essentials.feed.cooldown.bypass")) { user.healCooldown(); }