mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-12 12:00:59 +00:00
Not sure why I have a watcher null check, ALWAYS set the watcher.
This commit is contained in:
parent
142f1c277e
commit
473293463d
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ public abstract class Disguise {
|
||||||
disguise.setDynamicName(isDynamicName());
|
disguise.setDynamicName(isDynamicName());
|
||||||
disguise.setSoundGroup(getSoundGroup());
|
disguise.setSoundGroup(getSoundGroup());
|
||||||
|
|
||||||
if (getWatcher() != null && disguise.getWatcher() == null) {
|
if (getWatcher() != null) {
|
||||||
disguise.setWatcher(getWatcher().clone(disguise));
|
disguise.setWatcher(getWatcher().clone(disguise));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue