Package org.dynmap

Examples of org.dynmap.DynmapWorld


        public ForgeServer() {
        }
       
        @Override
        public int getBlockIDAt(String wname, int x, int y, int z) {
          DynmapWorld dw = this.getWorldByName(wname);
          if (dw != null) {
            World w = ((ForgeWorld)dw).getWorld();
            if((w != null) && (w.getChunkProvider().chunkExists(x >> 4,  z >> 4))) {
              return getBlockID(w, x, y, z);
            }
View Full Code Here

TOP

Related Classes of org.dynmap.DynmapWorld

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.