Examples of addMapContents()


Examples of com.epicsagaonline.bukkit.ChallengeMaps.objects.GameState.addMapContents()

        if (gs.getMap().getAllowBuilding())
        {
          Block blk = event.getBlock();
          gs.addBlockPlace(blk.getTypeId());
          gs.addBlockPlaceDistance(blk.getTypeId(), blk.getLocation());
          gs.addMapContents(blk.getTypeId());
        }
        else
        {
          event.setCancelled(true);
        }
View Full Code Here

Examples of com.epicsagaonline.bukkit.ChallengeMaps.objects.GameState.addMapContents()

    {
      GameState gs = Current.getGameStateByWorld(event.getBlock().getWorld());
      if (gs != null)
      {
        gs.removeMapContents(event.getBlock().getTypeId());
        gs.addMapContents(event.getNewState().getTypeId());
      }
    }
  }

  public @Override void onBlockFromTo(BlockFromToEvent event)
View Full Code Here

Examples of com.epicsagaonline.bukkit.ChallengeMaps.objects.GameState.addMapContents()

      GameState gs = Current.getGameStateByWorld(event.getBlock().getWorld());
      if (gs != null)
      {
        if (event.getBlock().getTypeId() == event.getToBlock().getTypeId())
        {
          gs.addMapContents(event.getToBlock().getTypeId());
        }
        // Log.Write("From: " + event.getBlock().getTypeId());
        // Log.Write("To: " + event.getToBlock().getTypeId());
        // gs.addMapContents(event.getToBlock().getTypeId());
      }
View Full Code Here

Examples of com.epicsagaonline.bukkit.ChallengeMaps.objects.GameState.addMapContents()

    {
      GameState gs = Current.getGameStateByWorld(event.getBlock().getWorld());
      if (gs != null)
      {
        gs.removeMapContents(event.getBlock().getTypeId());
        gs.addMapContents(event.getNewState().getTypeId());
      }
    }
  }

  public @Override void onLeavesDecay(LeavesDecayEvent event)
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.