ulope / planetwars-python-kit

An python interface to the second Google AI-Contest (PlanetWars) at http://ai-contest.com
16 stars 12 forks source link

Collision problem in Game.send_fleet #4

Closed cg123 closed 14 years ago

cg123 commented 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)

cg123 commented 14 years ago

Whoops.