Closed cg123 closed 14 years ago
If, for example, you try to send a fleet from "1" to "19" and a fleet from "11" to "9", it will instead send one larger fleet from "1" to "19".
This line: key = "%d%d" % (source_id, destination_id) Should be changed to something like this: key = "%d.%d" % (source_id, destination_id)
Whoops.
If, for example, you try to send a fleet from "1" to "19" and a fleet from "11" to "9", it will instead send one larger fleet from "1" to "19".
This line: key = "%d%d" % (source_id, destination_id) Should be changed to something like this: key = "%d.%d" % (source_id, destination_id)