mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-05 09:09:40 +01:00
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;
|
||||
}
|
||||
|
||||
public void setAggressive(boolean isAgressive) {
|
||||
setValue(16, (byte) (isAgressive ? 1 : 0));
|
||||
public void setAggressive(boolean isAggressive) {
|
||||
setValue(16, (byte) (isAggressive ? 1 : 0));
|
||||
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