Remove more redundant actions

This commit is contained in:
riking
2014-06-04 09:17:47 -07:00
parent 23303952b4
commit bb0ac727bf
3 changed files with 5 additions and 5 deletions

View File

@@ -748,7 +748,7 @@ public class PacketsManager {
StructureModifier<Object> mods = packet.getModifier();
mods.write(0, observer.getEntityId());
List<WrappedWatchableObject> watchableList = new ArrayList<WrappedWatchableObject>();
byte b = (byte) (0 | 1 << 5);
byte b = (byte) 1 << 5;
if (observer.isSprinting())
b = (byte) (b | 1 << 3);
watchableList.add(new WrappedWatchableObject(0, b));