WitchWatcher has no noticable changes

This commit is contained in:
libraryaddict 2014-07-14 13:14:21 +12:00
parent 8e7028ce96
commit 6f65448d6e
2 changed files with 2 additions and 22 deletions

View File

@ -12,8 +12,8 @@ public class GhastWatcher extends LivingWatcher {
return (Byte) getValue(16, (byte) 0) == 1;
}
public void setAggressive(boolean isAgressive) {
setValue(16, (byte) (isAgressive ? 1 : 0));
public void setAggressive(boolean isAggressive) {
setValue(16, (byte) (isAggressive ? 1 : 0));
sendData(16);
}

View File

@ -1,20 +0,0 @@
package me.libraryaddict.disguise.disguisetypes.watchers;
import me.libraryaddict.disguise.disguisetypes.Disguise;
public class WitchWatcher extends LivingWatcher {
public WitchWatcher(Disguise disguise) {
super(disguise);
}
public boolean isAggressive() {
return (Byte) getValue(21, (byte) 0) == 1;
}
public void setAggressive(boolean isTrue) {
setValue(21, (byte) (isTrue ? 1 : 0));
sendData(21);
}
}