mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 19:50:30 +00:00
Fixed a bug with a existing method having the same name as a method with no args
This commit is contained in:
parent
d16da8d26f
commit
3709db548a
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ public abstract class BaseDisguiseCommand implements CommandExecutor {
|
|||
Object value = null;
|
||||
for (Method method : disguise.getWatcher().getClass().getMethods()) {
|
||||
if (!method.getName().startsWith("get") && method.getName().equalsIgnoreCase(methodName)
|
||||
&& method.getAnnotation(Deprecated.class) == null) {
|
||||
&& method.getAnnotation(Deprecated.class) == null && method.getParameterTypes().length == 1) {
|
||||
methodToUse = method;
|
||||
methodName = method.getName();
|
||||
Class<?>[] types = method.getParameterTypes();
|
||||
|
|
Loading…
Reference in a new issue