Package com.forgeessentials.playerlogger

Examples of com.forgeessentials.playerlogger.BlockChange


    {
      try
      {
        if (i.hasNext())
        {
          BlockChange bc = i.next();
          world = DimensionManager.getWorld(bc.getDimension());

          if (bc.getType() == 0)
          {
            if (!undo)
            {
              place(bc);
            }
            else
            {
              remove(bc);
            }
          }
          else if (bc.getType() == 1)
          {
            if (undo)
            {
              place(bc);
            }
            else
            {
              remove(bc);
            }
          }
          currentTickChanged++;
          world.markBlockForUpdate(bc.getX(), bc.getY(), bc.getZ());
        }
        else
        {
          isComplete = true;
        }
View Full Code Here

TOP

Related Classes of com.forgeessentials.playerlogger.BlockChange

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.