mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-28 13:58:34 +01:00
Compare commits
2 commits
6b5c63059d
...
4597192f31
Author | SHA1 | Date | |
---|---|---|---|
4597192f31 | |||
dff54e4246 |
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.
|
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||||
mod_license=MIT
|
mod_license=MIT
|
||||||
# The mod version. See https://semver.org/
|
# The mod version. See https://semver.org/
|
||||||
mod_version=1.16.1
|
mod_version=1.16.2
|
||||||
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
# 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.
|
# This should match the base package used for the mod sources.
|
||||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
# 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))
|
if (!this.isNode(node))
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
this.startProfile("get_network_items");
|
this.startProfile("get_network_items");
|
||||||
var ret = new HashMap<IItemHandler, NetworkLocation>();
|
var ret = new LinkedHashMap<IItemHandler, NetworkLocation>();
|
||||||
for (var dest : this.getOrderedNetworkNodes(node)) {
|
for (var dest : this.getOrderedNetworkNodes(node)) {
|
||||||
if (!this.level.isLoaded(dest))
|
if (!this.level.isLoaded(dest))
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue