Fix a check not done for setEnraged

This commit is contained in:
libraryaddict
2020-10-09 11:56:00 +13:00
parent f229b25c71
commit 5f2fb5fc54
2 changed files with 6 additions and 4 deletions

View File

@@ -57,9 +57,11 @@ public class InsentientWatcher extends LivingWatcher {
setInsentientFlag(4, enraged);
// TODO Check if a less hacky fix is possible
if (!enraged) {
DisguiseUtilities.refreshTrackers(getDisguise());
if (!getDisguise().isDisguiseInUse() || enraged) {
return;
}
// TODO Check if a less hacky fix is possible
DisguiseUtilities.refreshTrackers(getDisguise());
}
}