Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 694c3d24960a9af711962a12d5d064eae0f3762d)
+++ 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);
