Don't hide sprinting particles on self disguise

This commit is contained in:
libraryaddict 2020-04-23 12:54:27 +12:00
parent a9be204f83
commit 0106e0802b
No known key found for this signature in database
GPG Key ID: 052E4FBCD257AEA4

View File

@ -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);
}