mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Fixed the empowerer not allowing extractions
This commit is contained in:
parent
204548ff75
commit
2efcf0eddd
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ public class TileEntityEmpowerer extends TileEntityInventoryBase{
|
|||
|
||||
@Override
|
||||
public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction){
|
||||
return !getRecipesForInput(stack).isEmpty();
|
||||
return getRecipesForInput(stack).isEmpty();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue