Fix isRightClicking() and add isSpinning()

This commit is contained in:
libraryaddict
2020-07-01 17:44:29 +12:00
parent 8e2645501b
commit 30cc40a6a3
5 changed files with 82 additions and 22 deletions

View File

@@ -235,9 +235,10 @@ public class DisguiseParser {
if (!Objects.deepEquals(dObj, object)) {
throw new IllegalStateException(String.format(
"%s has conflicting values! This means it expected the same value again but received a " +
"%s has conflicting values in class %s! This means it expected the same value again but " +
"received a " +
"different value on a different disguise! %s is not the same as %s!",
setMethod.getName(), object, dObj));
setMethod.getName(), setMethod.getDeclaringClass().getName(), object, dObj));
}
return;