Advertisement
Guest User

Untitled

a guest
Aug 18th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. @Override
  2. public boolean onBlockActivated (World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) {
  3.  
  4. if (worldIn.isRemote) {
  5.  
  6. final TileEntity tile = worldIn.getTileEntity(pos);
  7. final TileEntitySolarPanel panel = (TileEntitySolarPanel) tile;
  8. final ContainerSolarPanel container = (ContainerSolarPanel) panel.getCapability(TeslaCapabilities.CAPABILITY_HOLDER, EnumFacing.DOWN);
  9.  
  10. if (heldItem != null)
  11. {
  12. final Item item = heldItem.getItem();
  13. if (item == ModItems.simpleTexturedItem)
  14. {
  15. container.increaseCapacity(10000);
  16. --heldItem.stackSize;
  17.  
  18.  
  19. }
  20.  
  21. }
  22.  
  23. if (tile instanceof TileEntitySolarPanel && !tile.isInvalid()) {
  24.  
  25. sendSpamlessMessage(CHAT_ID, new TextComponentString(I18n.format("message.teslamodularsolars.blocksolarpanel.status", container.getStoredPower(), container.getCapacity(), TeslaModularSolarsConfig.panelPowerGen)));
  26. LogHelper.logInfo("TeslaModularSolars --------------Capacity is now: " + container.getCapacity());
  27. }
  28.  
  29.  
  30.  
  31.  
  32. }
  33.  
  34. return true;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement