Examples of LegacyBlockRegistry


Examples of com.sk89q.worldedit.world.registry.LegacyBlockRegistry

        ignored.add(BlockType.END_PORTAL); // Not supported in existing rotation code
    }

    @Test
    public void testTransform() throws Exception {
        BlockRegistry blockRegistry = new LegacyBlockRegistry();
        for (BlockType type : BlockType.values()) {
            if (ignored.contains(type)) {
                continue;
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.