Err too much.

This commit is contained in:
AlgorithmX2
2014-01-20 10:41:37 -06:00
parent 5652ec30ec
commit 834e9c04c5
159 changed files with 7953 additions and 1541 deletions
+5 -4
View File
@@ -2,6 +2,7 @@ package appeng.me.storage;
import appeng.api.config.AccessRestriction;
import appeng.api.config.Actionable;
import appeng.api.networking.security.BaseActionSource;
import appeng.api.storage.IMEInventory;
import appeng.api.storage.IMEInventoryHandler;
import appeng.api.storage.StorageChannel;
@@ -28,15 +29,15 @@ public class MEPassthru<T extends IAEStack<T>> implements IMEInventoryHandler<T>
}
@Override
public T injectItems(T input, Actionable type)
public T injectItems(T input, Actionable type, BaseActionSource src)
{
return internal.injectItems( input, type );
return internal.injectItems( input, type, src );
}
@Override
public T extractItems(T request, Actionable type)
public T extractItems(T request, Actionable type, BaseActionSource src)
{
return internal.extractItems( request, type );
return internal.extractItems( request, type, src );
}
@Override