removed double disable option
This commit is contained in:
parent
ad4a265849
commit
f8595d9fec
1 changed files with 2 additions and 2 deletions
|
@ -156,7 +156,7 @@ public class FluidMech extends ModPrefab
|
|||
{
|
||||
FMRecipeLoader.blockWasteLiquid = new BlockFluid(waste, getNextID());
|
||||
FMRecipeLoader.blockWasteLiquid.setUnlocalizedName("FluidWaste");
|
||||
dataList.add(new BlockData(FMRecipeLoader.blockWasteLiquid, "lmWaste"));
|
||||
dataList.add(new BlockData(FMRecipeLoader.blockWasteLiquid, "lmWaste").canDisable(false));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -178,7 +178,7 @@ public class FluidMech extends ModPrefab
|
|||
{
|
||||
FMRecipeLoader.blockOilLiquid = new BlockFluid(oil, getNextID());
|
||||
FMRecipeLoader.blockOilLiquid.setUnlocalizedName("FluidOil");
|
||||
dataList.add(new BlockData(FMRecipeLoader.blockOilLiquid, "lmOil"));
|
||||
dataList.add(new BlockData(FMRecipeLoader.blockOilLiquid, "lmOil").canDisable(false));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue