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 -->
|
||||
<groupId>LibsDisguises</groupId>
|
||||
<artifactId>LibsDisguises</artifactId>
|
||||
<version>10.0.17</version>
|
||||
<version>10.0.17-SNAPSHOT</version>
|
||||
|
||||
<build>
|
||||
<defaultGoal>exec:java clean install</defaultGoal>
|
||||
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user