Fixed the wrong boolean being returned

This commit is contained in:
Andrew 2013-07-23 06:44:27 +12:00
parent f5e5b0c261
commit 29ec18fe03

View File

@ -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;