diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-16 01:40:25 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-16 01:40:25 -0600 |
commit | 968c0c493cfc9bffe4501598585c8e1b05a352c4 (patch) | |
tree | 86e00b899f8f60b9daf7866d4ea4a359f3947b30 /extras/connection_helper.py | |
parent | f0d8e69adcb176e82deb588c6b6e1ba8a12f5123 (diff) |
formulas for map header connections instead of raw values
hg-commit-id: b6822898d929
Diffstat (limited to 'extras/connection_helper.py')
-rw-r--r-- | extras/connection_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/connection_helper.py b/extras/connection_helper.py index e116347c..1eab1df2 100644 --- a/extras/connection_helper.py +++ b/extras/connection_helper.py @@ -56,7 +56,7 @@ def print_connections(map_id, in_connection_id=None, do_output=False): shift = result calculated = map2_blocks_pointer + shift output += "shift: " + str(shift) + "\n" - formula += "Blocks + " + str(shift) + formula += " + " + str(shift) elif direction == "WEST": calculated = map2_blocks_pointer - 3 + (map2_width) result = connected_pointer - calculated |