public BlockFrostedChest(String name, boolean dropsSnowflake) {
   super(Material.wood);
   setCreativeTab(DivineRPGTabs.blocks);
   setStepSound(soundTypeGlass);
   setTextureName("ice");
   setUnlocalizedName(name);
   GameRegistry.registerBlock(this, name);
   LangRegistry.addBlock(this);
   this.dropsSnowflake = dropsSnowflake;
 }