mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-01-31 06:39:36 +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…
x
Reference in New Issue
Block a user