WitchWatcher has no noticable changes
This commit is contained in:
parent
8e7028ce96
commit
6f65448d6e
@ -12,8 +12,8 @@ public class GhastWatcher extends LivingWatcher {
|
|||||||
return (Byte) getValue(16, (byte) 0) == 1;
|
return (Byte) getValue(16, (byte) 0) == 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAggressive(boolean isAgressive) {
|
public void setAggressive(boolean isAggressive) {
|
||||||
setValue(16, (byte) (isAgressive ? 1 : 0));
|
setValue(16, (byte) (isAggressive ? 1 : 0));
|
||||||
sendData(16);
|
sendData(16);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user