mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-11 08:16:19 -04:00
Added waypoints addresses to navigation#findWaypoints
Like { redstone = <power>, position={<x>,<y>,<z>}, label = "<label>", address = "<waypoint address uuid>" }
This commit is contained in:
parent
a19bb2b692
commit
b9cc1663b2
@ -83,7 +83,8 @@ class UpgradeNavigation(val host: EnvironmentHost with Rotatable) extends prefab
|
|||||||
Map(
|
Map(
|
||||||
"position" -> Array(delta.xCoord, delta.yCoord, delta.zCoord),
|
"position" -> Array(delta.xCoord, delta.yCoord, delta.zCoord),
|
||||||
"redstone" -> waypoint.maxInput,
|
"redstone" -> waypoint.maxInput,
|
||||||
"label" -> waypoint.label
|
"label" -> waypoint.label,
|
||||||
|
"address" -> waypoint.node.address()
|
||||||
)
|
)
|
||||||
}).toArray)
|
}).toArray)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user