4
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2025-08-14 15:58:10 +00:00

update some documentation, fix links in map, replace pointless version with coords field

This commit is contained in:
Arceliar
2018-12-12 18:12:54 -06:00
parent 96cf6caabc
commit d48c10f7e2
5 changed files with 7 additions and 6 deletions

View File

@@ -40,6 +40,7 @@ def generate_graph(time_limit=60*60*3):
nodes = dict()
def addAncestors(info):
parent = NodeInfo("?", info.getParent())
parent.label = "{} {}".format(parent.ip, parent.coords)
nodes[parent.coords] = parent
if parent.coords != parent.getParent(): addAncestors(parent)