mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-05 09:09:40 +01:00
Fix isSneaking bugged in 1.12 and 1.13
This commit is contained in:
parent
912ca85aff
commit
ef10444c58
@ -399,7 +399,9 @@ public class FlagWatcher {
|
||||
setEntityFlag(1, setSneaking);
|
||||
sendData(MetaIndex.ENTITY_META);
|
||||
|
||||
updatePose();
|
||||
if (NmsVersion.v1_14.isSupported()) {
|
||||
updatePose();
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isSprinting() {
|
||||
@ -615,6 +617,7 @@ public class FlagWatcher {
|
||||
updatePose();
|
||||
}
|
||||
|
||||
@NmsAddedIn(val = NmsVersion.v1_14)
|
||||
protected void updatePose() {
|
||||
if (isSleeping()) {
|
||||
setEntityPose(EntityPose.SLEEPING);
|
||||
|
Loading…
Reference in New Issue
Block a user