Fixed the wrong boolean being returned
This commit is contained in:
parent
f5e5b0c261
commit
29ec18fe03
@ -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 New Issue
Block a user