Finished off the Chemical Injection Chamber, just need sounds
This commit is contained in:
parent
4cf33562c6
commit
9498b01475
2 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ public class ChemicalInjectionChamberRecipeHandler extends AdvancedMachineRecipe
|
|||
@Override
|
||||
public String getRecipeName()
|
||||
{
|
||||
return "Chemical Injection Chamber";
|
||||
return "C. Injection Chamber";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -30,7 +30,7 @@ public class ChemicalInjectionChamberRecipeHandler extends AdvancedMachineRecipe
|
|||
@Override
|
||||
public Set getRecipes()
|
||||
{
|
||||
return Recipe.PURIFICATION_CHAMBER.get().entrySet();
|
||||
return Recipe.CHEMICAL_INJECTION_CHAMBER.get().entrySet();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -570,7 +570,7 @@ public class BlockMachine extends BlockContainer implements ISpecialBounds
|
|||
{
|
||||
for(MachineType type : MachineType.values())
|
||||
{
|
||||
if(type == MachineType.CHEMICAL_FORMULATOR || type == MachineType.CHEMICAL_INFUSER || type == MachineType.CHEMICAL_INJECTION_CHAMBER /*TODO*/)
|
||||
if(type == MachineType.CHEMICAL_FORMULATOR || type == MachineType.CHEMICAL_INFUSER /*TODO*/)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue