Change canBend to canBind

This commit is contained in:
jedk1 2015-11-19 18:21:09 +00:00
parent 2af7587080
commit 9967d46fb1

View file

@ -38,7 +38,7 @@ public class BendingTabComplete implements TabCompleter
if (args.length == 2) if (args.length == 2)
{ {
for (String abil : AbilityModuleManager.abilities) { for (String abil : AbilityModuleManager.abilities) {
if (GeneralMethods.canBend(sender.getName(), abil)) { if (GeneralMethods.canBind(sender.getName(), abil)) {
abilities.add(abil); abilities.add(abil);
} }
} }