equivalent-exchange-3/ee3_common/com/pahimar/ee3/block/BlockRedWaterStill.java

30 lines
730 B
Java
Raw Normal View History

package com.pahimar.ee3.block;
import net.minecraft.block.BlockStationary;
import net.minecraft.block.material.Material;
import com.pahimar.ee3.EquivalentExchange3;
import com.pahimar.ee3.lib.Strings;
2012-09-11 04:07:59 +02:00
2012-10-27 23:41:02 +02:00
/**
* Equivalent-Exchange-3
2012-10-27 23:41:02 +02:00
*
* BlockRedWaterStill
2012-10-27 23:41:02 +02:00
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
2012-09-11 04:07:59 +02:00
public class BlockRedWaterStill extends BlockStationary {
protected BlockRedWaterStill(int id) {
super(id, Material.water);
blockHardness = 100F;
2012-09-11 04:07:59 +02:00
this.setLightOpacity(3);
this.setUnlocalizedName(Strings.RED_WATER_STILL_NAME);
this.setCreativeTab(EquivalentExchange3.tabsEE3);
this.disableStats();
2012-09-11 04:07:59 +02:00
}
}