summaryrefslogtreecommitdiff
path: root/simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'simple.py')
-rw-r--r--simple.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/simple.py b/simple.py
index 10dba02..335fa08 100644
--- a/simple.py
+++ b/simple.py
@@ -119,6 +119,10 @@ if __name__ == '__main__':
map_[5][15] = '3'
map_[5][25] = '2'
+ for y in (2, 8):
+ for x in (5, 15, 25):
+ map_[y][x] = '+'
+
game = robots.Game(map_)
game.add_bot(bot, 'Alice')
game.add_bot(bot, 'Bob')