Advertisement
Guest User

Untitled

a guest
Jul 18th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. /* */ package fr.altiscraft.altiscraft.common;
  2. /* */
  3. /* */ import net.minecraft.block.Block;
  4. /* */ import net.minecraft.block.material.Material;
  5. /* */ import net.minecraft.client.Minecraft;
  6. /* */ import net.minecraft.entity.player.EntityPlayer;
  7. /* */ import net.minecraft.world.World;
  8. /* */
  9. /* */
  10. /* */ public class MineraisMeth
  11. /* */ extends Block
  12. /* */ {
  13. /* */ public void onBlockDestroyedByPlayer(World world, int i, int j, int k, int l)
  14. /* */ {
  15. /* 15 */ EntityPlayer entity = Minecraft.getMinecraft().thePlayer;
  16. /* */
  17. /* */
  18. /* 18 */ world.setBlock(i, j, k, ModAltisCraft.MineraisMeth, 0, 2);
  19. /* */ }
  20. /* */
  21. /* */ protected MineraisMeth()
  22. /* */ {
  23. /* 23 */ super(Material.rock);
  24. /* */ }
  25. /* */ }
  26.  
  27.  
  28. /* Location: C:\Users\User\Desktop\AC.jar!\fr\altiscraft\altiscraft\common\MineraisMeth.class
  29. * Java compiler version: 6 (50.0)
  30. * JD-Core Version: 0.7.1
  31. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement