Package org.jnbt

Examples of org.jnbt.LongTag


      // valid level file, here. Good for debugging, too.
      final IntTag spawnX = (IntTag) newData.get("SpawnX");
      final IntTag spawnY = (IntTag) newData.get("SpawnY");
      final IntTag spawnZ = (IntTag) newData.get("SpawnZ");

      final LongTag Seed = (LongTag) newData.get("RandomSeed");
      var.randomSeed = Seed.getValue();
      Out.out("Seed: " + var.randomSeed); // lets output the seed, cause why not?

      final Coordinates ret =
          new Coordinates(spawnX.getValue(), spawnY.getValue(), spawnZ.getValue());
      return ret;
View Full Code Here

TOP

Related Classes of org.jnbt.LongTag

Copyright © 2018 www.massapicom. 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.