mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 11:40:29 +00:00
Fixed the wrong boolean being returned
This commit is contained in:
parent
f5e5b0c261
commit
29ec18fe03
1 changed files with 2 additions and 5 deletions
|
@ -23,10 +23,7 @@ public class MobDisguise extends Disguise {
|
|||
|
||||
public boolean doesDisguiseAge() {
|
||||
if (getWatcher() != null) {
|
||||
if (getWatcher() instanceof AgeableWatcher)
|
||||
return ((AgeableWatcher) getWatcher()).isAdult();
|
||||
else if (getWatcher() instanceof ZombieWatcher)
|
||||
return ((ZombieWatcher) getWatcher()).isAdult();
|
||||
return getWatcher() instanceof AgeableWatcher || getWatcher() instanceof ZombieWatcher;
|
||||
}
|
||||
return false;
|
||||
|
||||
|
@ -39,7 +36,7 @@ public class MobDisguise extends Disguise {
|
|||
public boolean isAdult() {
|
||||
if (getWatcher() != null) {
|
||||
if (getWatcher() instanceof AgeableWatcher)
|
||||
return ((AgeableWatcher) getWatcher()).isAdult();
|
||||
return true;
|
||||
else if (getWatcher() instanceof ZombieWatcher)
|
||||
return ((ZombieWatcher) getWatcher()).isAdult();
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue