mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 07:06:45 +01:00
Merge pull request #4195 from Draycia/master
Don't ready hand when player can't use skill
This commit is contained in:
commit
99f12fe0ed
@ -933,6 +933,10 @@ public class McMMOPlayer {
|
||||
}
|
||||
|
||||
public void processAbilityActivation(PrimarySkillType skill) {
|
||||
if (!skill.getPermissions(getPlayer())) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (Config.getInstance().getAbilitiesOnlyActivateWhenSneaking() && !player.isSneaking()) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user