remove wrong import
This commit is contained in:
parent
885ba9210c
commit
53adc8142e
1 changed files with 1 additions and 2 deletions
|
@ -24,7 +24,6 @@
|
||||||
|
|
||||||
package techreborn.client.container.builder;
|
package techreborn.client.container.builder;
|
||||||
|
|
||||||
import ic2.core.energy.grid.Tile;
|
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.inventory.*;
|
import net.minecraft.inventory.*;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
@ -103,7 +102,7 @@ public class BuiltContainer extends Container {
|
||||||
if(this.tile != null) {
|
if(this.tile != null) {
|
||||||
return tile.isUsableByPlayer(playerIn);
|
return tile.isUsableByPlayer(playerIn);
|
||||||
} else {
|
} else {
|
||||||
return this.canInteract.test(playerIn); // <- What does this thing do ?
|
return this.canInteract.test(playerIn); // <
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue