Fix incorrect arrow no clip mask bit (#1574)

This commit is contained in:
Jesse 2022-12-14 10:51:51 +01:00 committed by GitHub
parent 8585e0ceb0
commit 809d9516b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ public class AbstractArrowMeta extends EntityMeta {
public static final byte MAX_OFFSET = OFFSET + 2;
private final static byte CRITICAL_BIT = 0x01;
private final static byte NO_CLIP_BIT = 0x01;
private final static byte NO_CLIP_BIT = 0x02;
protected AbstractArrowMeta(@NotNull Entity entity, @NotNull Metadata metadata) {
super(entity, metadata);