Index: client/Client/GameRender.cpp
===================================================================
--- client/Client/GameRender.cpp	(revision 3476207091fdaa1074da644c2170fc7a8a140202)
+++ client/Client/GameRender.cpp	(revision b1ce08cb4577b01b6703c84fcf501e916eeb0606)
@@ -2,8 +2,11 @@
 
 #include <cmath>
+#include <iostream>
 
 #include <allegro5/allegro_primitives.h>
 
 #include "../../common/Common.h"
+
+using namespace std;
 
 void GameRender::drawMap(WorldMap* gameMap)
@@ -97,4 +100,8 @@
       else if (p->team == 1)
          color = al_map_rgb(255, 0, 0);
+      else {
+         color = al_map_rgb(0, 0, 0);
+         cout << "Failed to determine player team when drawing player" << endl;
+      }
       
       al_draw_filled_circle(pos.x, pos.y, 12, color);
