Merge pull request #932 from SandGrainOne/master
Fix for duplication bug in advanced crafting tables.
This commit is contained in:
commit
3dbe71ea36
1 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
||||||
*/
|
*/
|
||||||
package buildcraft.core.gui.slots;
|
package buildcraft.core.gui.slots;
|
||||||
|
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.inventory.IInventory;
|
import net.minecraft.inventory.IInventory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -23,4 +24,10 @@ public class SlotPhantom extends SlotBase implements IPhantomSlot {
|
||||||
public boolean canAdjust() {
|
public boolean canAdjust() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean canTakeStack(EntityPlayer par1EntityPlayer)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue