Fixed naming in manipulator
This commit is contained in:
parent
ec4bb7fa6f
commit
aae7782356
2 changed files with 6 additions and 6 deletions
|
@ -12,10 +12,10 @@ public interface IManipulator
|
||||||
* Find items going into the manipulator and input them into an inventory behind this
|
* Find items going into the manipulator and input them into an inventory behind this
|
||||||
* manipulator.
|
* manipulator.
|
||||||
*/
|
*/
|
||||||
public void inject();
|
public void eject();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Injects items
|
* Injects items
|
||||||
*/
|
*/
|
||||||
public void eject();
|
public void inject();
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,7 +67,7 @@ public class TileEntityManipulator extends TileEntityFilterable implements IRota
|
||||||
{
|
{
|
||||||
if (!this.isOutput)
|
if (!this.isOutput)
|
||||||
{
|
{
|
||||||
this.eject();
|
this.inject();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -81,7 +81,7 @@ public class TileEntityManipulator extends TileEntityFilterable implements IRota
|
||||||
*/
|
*/
|
||||||
if (this.isRedstonePowered)
|
if (this.isRedstonePowered)
|
||||||
{
|
{
|
||||||
this.inject();
|
this.eject();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -92,7 +92,7 @@ public class TileEntityManipulator extends TileEntityFilterable implements IRota
|
||||||
* Find items going into the manipulator and input them into an inventory behind this manipulator.
|
* Find items going into the manipulator and input them into an inventory behind this manipulator.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void eject()
|
public void inject()
|
||||||
{
|
{
|
||||||
Vector3 inputPosition = new Vector3(this);
|
Vector3 inputPosition = new Vector3(this);
|
||||||
|
|
||||||
|
@ -154,7 +154,7 @@ public class TileEntityManipulator extends TileEntityFilterable implements IRota
|
||||||
* Inject items
|
* Inject items
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void inject()
|
public void eject()
|
||||||
{
|
{
|
||||||
this.onPowerOff();
|
this.onPowerOff();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue