Guest User

Untitled

a guest
May 27th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. import java.util.Random;
  4.  
  5. public class Wlamp extends BlockBreakable
  6. {
  7. public Wlamp(int i, int j, Material material, boolean flag)
  8. {
  9. super(i, j, material, flag);
  10. }
  11.  
  12. public int idDropped(int i, Random random, int j)
  13. {
  14. return mod_chemistrycraft.Wlamp.blockID;
  15. }
  16.  
  17. public int quantityDropped(Random random)
  18. {
  19. return 1;
  20. }
  21.  
  22. public boolean isOpaqueCube()
  23. {
  24. return false;
  25. }
  26.  
  27. public boolean renderAsNormalBlock()
  28. {
  29. return false;
  30. }
  31.  
  32. public int getRenderType()
  33. {
  34. return 1;
  35. }
  36. }
  37.  
  38.  
  39.  
  40.  
  41.  
  42. IS SUPPOSED TO BE RENDERED AS A FLOWER WHEN PLACED
Add Comment
Please, Sign In to add comment