Robots don't seem to deliver any items to storage chests with multiple filters set.
Currently this is only a concern for mods that add logistics storage with multiple filter slots.
Search found 2 matches
- Tue Jan 02, 2018 3:03 am
- Forum: Resolved Problems and Bugs
- Topic: [Rseding91] [0.16.12] Multiple filter slots on storage chests don't work
- Replies: 4
- Views: 3712
- Tue Sep 08, 2015 6:11 pm
- Forum: Tools
- Topic: Factorio on Nix(OS)
- Replies: 2
- Views: 11011
Factorio on Nix(OS)
I hacked together a nix expression ( http://nixos.org/nix/ ) for "building" factorio:
{ stdenv
, pkgs
, lib
, makeWrapper
, path
, version
}:
let
libmapper = val: (map (x: x + "/lib") val ++ map (x: x + "/lib64") val);
lib_help = if stdenv.system == "x86_64-linux" then "lib64" else "lib";
in ...
{ stdenv
, pkgs
, lib
, makeWrapper
, path
, version
}:
let
libmapper = val: (map (x: x + "/lib") val ++ map (x: x + "/lib64") val);
lib_help = if stdenv.system == "x86_64-linux" then "lib64" else "lib";
in ...