return false;
}
@CCCommand(description="Returns true if the computer is allowed to interact with the connected pipe.", needPermission=false)
public boolean canAccess() {
ISecurityProvider sec = getSecurityProvider();
if(sec != null) {
int id = -1;
if(this.container instanceof LogisticsTileGenericPipe) {
id = ((LogisticsTileGenericPipe)this.container).getLastCCID();
}
return sec.getAllowCC(id);
}
return true;
}