mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-01-09 09:17:39 +00:00
make bit mask protected
TODO same for BIT_OFFSET
This commit is contained in:
parent
b24ebaf6f2
commit
808d32bc85
@ -66,7 +66,8 @@ public class AsyncBlock implements Block {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getTypeId() {
|
public int getTypeId() {
|
||||||
return (queue.getCachedCombinedId4Data(x, y, z, BlockTypes.AIR.getInternalId()) & BlockTypes.BIT_MASK);
|
int id = (queue.getCachedCombinedId4Data(x, y, z, BlockTypes.AIR.getInternalId()));
|
||||||
|
return BlockTypes.getFromStateId(id).getInternalId();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -795,7 +795,7 @@ public final class BlockTypes {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
public static final int BIT_OFFSET; // Used internally
|
public static final int BIT_OFFSET; // Used internally
|
||||||
public static final int BIT_MASK; // Used internally
|
protected static final int BIT_MASK; // Used internally
|
||||||
|
|
||||||
private static final Map<String, BlockType> $REGISTRY = new HashMap<>();
|
private static final Map<String, BlockType> $REGISTRY = new HashMap<>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user