remove wrong import

This commit is contained in:
alexpic57 2017-09-08 21:25:13 +02:00
parent 885ba9210c
commit 53adc8142e

View file

@ -24,7 +24,6 @@
package techreborn.client.container.builder;
import ic2.core.energy.grid.Tile;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.*;
import net.minecraft.item.ItemStack;
@ -103,7 +102,7 @@ public class BuiltContainer extends Container {
if(this.tile != null) {
return tile.isUsableByPlayer(playerIn);
} else {
return this.canInteract.test(playerIn); // <- What does this thing do ?
return this.canInteract.test(playerIn); // <
}
}