Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 147f662d427135b91ad89e0e6b5172bddaa8985b)
+++ client/Client/main.cpp	(revision f3cf1a5d1000dbc387a141a75d8586df215c2a89)
@@ -339,4 +339,5 @@
                   {
                      // need to check if the right-click was actually on this player
+                     // right now, this code will target all players other than the current one
                      target = &it->second;
                      if (target->id != curPlayerId && target->team != curPlayer->team) {
@@ -781,7 +782,7 @@
    }
 
-   for (int x=0; x<12; x++)
+   for (int x=0; x<gameMap->width; x++)
    {
-      for (int y=0; y<12; y++)
+      for (int y=0; y<gameMap->height; y++)
       {
          vector<WorldMap::Object> vctObjects = gameMap->getObjects(x, y);
