mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-28 13:58:34 +01:00
Compare commits
No commits in common. "4597192f311fed07ddd1066009207b5a26fa90dc" and "6b5c63059d6fce214be7cf599c59b9454965774d" have entirely different histories.
4597192f31
...
6b5c63059d
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ mod_name=PrettyPipes
|
|||
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||
mod_license=MIT
|
||||
# The mod version. See https://semver.org/
|
||||
mod_version=1.16.2
|
||||
mod_version=1.16.1
|
||||
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
||||
# This should match the base package used for the mod sources.
|
||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
|
|
|
@ -340,7 +340,7 @@ public class PipeNetwork extends SavedData implements GraphListener<BlockPos, Ne
|
|||
if (!this.isNode(node))
|
||||
return Collections.emptyList();
|
||||
this.startProfile("get_network_items");
|
||||
var ret = new LinkedHashMap<IItemHandler, NetworkLocation>();
|
||||
var ret = new HashMap<IItemHandler, NetworkLocation>();
|
||||
for (var dest : this.getOrderedNetworkNodes(node)) {
|
||||
if (!this.level.isLoaded(dest))
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue