Update common/buildcraft/transport/PipeTransportItems.java

LogisticsPipes would like to be able to handle reversed items ourselves. (in some cases we want to buffer, and try to eject once the associated machine/inventory has space)
This commit is contained in:
Andrew Hill 2013-02-21 20:57:13 +10:00
parent d609f9662f
commit 8354db8e21

View file

@ -132,7 +132,7 @@ public class PipeTransportItems extends PipeTransport {
* *
* @param data * @param data
*/ */
private void reverseItem(EntityData data) { protected void reverseItem(EntityData data) {
if (data.item.isCorrupted()) if (data.item.isCorrupted())
// Safe guard - if for any reason the item is corrupted at this // Safe guard - if for any reason the item is corrupted at this
// stage, avoid adding it to the pipe to avoid further exceptions. // stage, avoid adding it to the pipe to avoid further exceptions.