Package powercrystals.minefactoryreloaded.world

Examples of powercrystals.minefactoryreloaded.world.GrindingWorldServer


  public void setWorldObj(World world)
  {
    super.setWorldObj(world);
    if(_grindingWorld != null) _grindingWorld.clearReferences();
    if(this.worldObj instanceof WorldServer)
      _grindingWorld = new GrindingWorldServer((WorldServer)this.worldObj, this);
    else
      _grindingWorld = new GrindingWorld(this.worldObj, this);
  }
View Full Code Here

TOP

Related Classes of powercrystals.minefactoryreloaded.world.GrindingWorldServer

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.