mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 19:50:30 +00:00
Deprecated isFused and setFused as they are the same as isIgnited and setIgnited
This commit is contained in:
parent
585f8ad116
commit
8dd604153e
1 changed files with 2 additions and 0 deletions
|
@ -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 a new issue