mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-12 12:00:59 +00:00
Don't hide sprinting particles on self disguise
This commit is contained in:
parent
a9be204f83
commit
0106e0802b
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ public class PacketListenerViewSelfDisguise extends PacketAdapter {
|
|||
byte b = (byte) watch.getValue();
|
||||
|
||||
// Add invisibility, remove glowing, remove sprinting
|
||||
byte a = (byte) (((b | 1 << 5) & ~(1 << 6)) & ~(1 << 3));
|
||||
byte a = (byte) ((b | 1 << 5) & ~(1 << 6));
|
||||
|
||||
watch.setValue(a);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue