mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-12 12:00:59 +00:00
Fix potential issue with wrong disguise parameter
This commit is contained in:
parent
f1653c0bb0
commit
e9a968fe7b
2 changed files with 5 additions and 4 deletions
|
@ -563,7 +563,8 @@ public abstract class Disguise {
|
|||
@Deprecated
|
||||
public Disguise setWatcher(FlagWatcher newWatcher) {
|
||||
if (!getType().getWatcherClass().isInstance(newWatcher)) {
|
||||
throw new IllegalArgumentException(newWatcher.getClass().getSimpleName() + " is not a instance of " +
|
||||
throw new IllegalArgumentException(
|
||||
(newWatcher == null ? "null" : newWatcher.getClass().getSimpleName()) + " is not a instance of " +
|
||||
getType().getWatcherClass().getSimpleName() + " for DisguiseType " + getType().name());
|
||||
}
|
||||
|
||||
|
|
|
@ -69,11 +69,11 @@ public class FlagWatcher {
|
|||
FlagWatcher cloned;
|
||||
|
||||
try {
|
||||
cloned = getClass().getConstructor(Disguise.class).newInstance(getDisguise());
|
||||
cloned = getClass().getConstructor(Disguise.class).newInstance(owningDisguise);
|
||||
}
|
||||
catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
cloned = new FlagWatcher(getDisguise());
|
||||
cloned = new FlagWatcher(owningDisguise);
|
||||
}
|
||||
|
||||
cloned.entityValues = (HashMap<Integer, Object>) entityValues.clone();
|
||||
|
|
Loading…
Reference in a new issue