Deprecated isFused and setFused as they are the same as isIgnited and setIgnited
This commit is contained in:
parent
585f8ad116
commit
8dd604153e
@ -8,6 +8,7 @@ public class CreeperWatcher extends LivingWatcher {
|
||||
super(disguise);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public boolean isFused() {
|
||||
return (Byte) getValue(16, (byte) 0) == 1;
|
||||
}
|
||||
@ -26,6 +27,7 @@ public class CreeperWatcher extends LivingWatcher {
|
||||
sendData(16);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public void setFused(boolean isFused) {
|
||||
setValue(16, (byte) (isFused ? 1 : -1));
|
||||
sendData(16);
|
||||
|
Loading…
Reference in New Issue
Block a user