Advertisement
LexManos

Field Comments

Feb 9th, 2012
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.76 KB | None | 0 0
  1.  
  2.     /**
  3.      * A pumpkin
  4.      */
  5.     public static final Block pumpkin;
  6.  
  7.     /**
  8.      * Red block, main part of the nether
  9.      */
  10.     public static final Block netherrack;
  11.     public static final Block slowSand;
  12.  
  13.     /**
  14.      * a brittle glass like substance found only in the nether
  15.      */
  16.     public static final Block glowStone;
  17.  
  18.     /**
  19.      * The purple teleport blocks inside the obsidian circle
  20.      */
  21.     public static final BlockPortal portal;
  22.  
  23.     /**
  24.      * The Jack-O-Lantern
  25.      */
  26.     public static final Block pumpkinLantern;
  27.     public static final Block cake;
  28.  
  29.     /**
  30.      * Is the redstone repeater (diode) when isn't powered.
  31.      */
  32.     public static final Block redstoneRepeaterIdle;
  33.  
  34.     /**
  35.      * Is the redstone repeater (diode) when powered.
  36.      */
  37.     public static final Block redstoneRepeaterActive;
  38.  
  39.     /**
  40.      * Is the april fools secret locked chest, only spawn on new chunks on 1st April.
  41.      */
  42.     public static final Block lockedChest;
  43.    
  44. Versus:
  45.  
  46.     public static final Block pumpkin; //A pumpkin
  47.     public static final Block netherrack; //Red block, main part of the nether
  48.     public static final Block slowSand;
  49.     public static final Block glowStone; //a brittle glass like substance found only in the nether
  50.     public static final BlockPortal portal; //The purple teleport blocks inside the obsidian circle
  51.     public static final Block pumpkinLantern; //The Jack-O-Lantern
  52.     public static final Block cake;
  53.     public static final Block redstoneRepeaterIdle; //Is the redstone repeater (diode) when isn't powered.
  54.     public static final Block redstoneRepeaterActive; //Is the redstone repeater (diode) when powered.
  55.     public static final Block lockedChest; //Is the april fools secret locked chest, only spawn on new chunks on 1st April.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement