Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision df79cfd232648969b6baacef4ffcf8f810cdf87e)
+++ client/Client/main.cpp	(revision a6066e8fba1a901cdcaa9bd6ca01ab8945a4b14e)
@@ -650,11 +650,14 @@
 
       if (p->id == curPlayerId)
+         al_draw_filled_circle(pos.x, pos.y, 14, al_map_rgb(0, 0, 0));
+      
+      if (p->team == 0)
+         al_draw_filled_circle(pos.x, pos.y, 12, al_map_rgb(0, 0, 255));
+      else if (p->team == 1)
          al_draw_filled_circle(pos.x, pos.y, 12, al_map_rgb(255, 0, 0));
-      else
-         al_draw_filled_circle(pos.x, pos.y, 12, al_map_rgb(191, 0, 0));
 
       if (p->hasBlueFlag)
          al_draw_filled_rectangle(pos.x+4, pos.y-18, pos.x+18, pos.y-4, al_map_rgb(0, 0, 255));
-      else if(p->hasRedFlag)
+      else if (p->hasRedFlag)
          al_draw_filled_rectangle(pos.x+4, pos.y-18, pos.x+18, pos.y-4, al_map_rgb(255, 0, 0));
    }
