20 lines
504 B
Java
20 lines
504 B
Java
package mekanism.common;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraft.inventory.ContainerRepair;
|
|
import net.minecraft.world.World;
|
|
|
|
public class ContainerRobitRepair extends ContainerRepair
|
|
{
|
|
public ContainerRobitRepair(InventoryPlayer inventory, World world)
|
|
{
|
|
super(inventory, world, 0, 0, 0, inventory.player);
|
|
}
|
|
|
|
@Override
|
|
public boolean canInteractWith(EntityPlayer entityplayer)
|
|
{
|
|
return true;
|
|
}
|
|
}
|