Examples of ByteTag


Examples of com.sk89q.jnbt.ByteTag

    }

    @Override
    public CompoundTag getNbtData() {
        Map<String, Tag> values = new HashMap<String, Tag>();
        values.put("note", new ByteTag(note));
        return new CompoundTag(values);
    }
View Full Code Here

Examples of net.lightstone.util.nbt.ByteTag

    levelTags.put("LastUpdate", new LongTag("LastUpdate", 0));

    levelTags.put("xPos", new IntTag("xPos", chunk.getX()));
    levelTags.put("zPos", new IntTag("zPos", chunk.getZ()));
    // TODO: terrainpopulated
    levelTags.put("TerrainPopulated", new ByteTag("TerrainPopulated", (byte) 0));
    return new CompoundTag("Level", levelTags);
  }
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.