This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class PaletteHashTest { | |
private static final int FNV1_32_INIT = 0x811c9dc5; | |
private static final int FNV1_PRIME_32 = 0x01000193; | |
public static void main(String[] args) throws Exception { | |
NbtMap blockState = NbtMap.builder() | |
.putString("name", "minecraft:bamboo_hanging_sign") | |
.putCompound("states", NbtMap.builder() | |
.putInt("facing_direction", 3) |