Fix a check not done for setEnraged
This commit is contained in:
parent
f229b25c71
commit
5f2fb5fc54
2
pom.xml
2
pom.xml
@ -5,7 +5,7 @@
|
|||||||
<!-- A good example on why temporary names for project identification shouldn't be used -->
|
<!-- A good example on why temporary names for project identification shouldn't be used -->
|
||||||
<groupId>LibsDisguises</groupId>
|
<groupId>LibsDisguises</groupId>
|
||||||
<artifactId>LibsDisguises</artifactId>
|
<artifactId>LibsDisguises</artifactId>
|
||||||
<version>10.0.17</version>
|
<version>10.0.17-SNAPSHOT</version>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>exec:java clean install</defaultGoal>
|
<defaultGoal>exec:java clean install</defaultGoal>
|
||||||
|
@ -57,9 +57,11 @@ public class InsentientWatcher extends LivingWatcher {
|
|||||||
|
|
||||||
setInsentientFlag(4, enraged);
|
setInsentientFlag(4, enraged);
|
||||||
|
|
||||||
|
if (!getDisguise().isDisguiseInUse() || enraged) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO Check if a less hacky fix is possible
|
// TODO Check if a less hacky fix is possible
|
||||||
if (!enraged) {
|
|
||||||
DisguiseUtilities.refreshTrackers(getDisguise());
|
DisguiseUtilities.refreshTrackers(getDisguise());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user