Index: common/Player.cpp
===================================================================
--- common/Player.cpp	(revision 80b3f94e6c1760173cc88daf124b8e23acbebec8)
+++ common/Player.cpp	(revision ad5d122790401d2d049952e17ca5f88fba109348)
@@ -53,6 +53,6 @@
    memcpy(buffer, &this->id, 4);
    strcpy(buffer+4, this->name.c_str());
-   memcpy(buffer+4+this->name.length(), &this->pos.x, 4);
-   memcpy(buffer+8+this->name.length(), &this->pos.y, 4);
+   memcpy(buffer+5+this->name.length(), &this->pos.x, 4);
+   memcpy(buffer+9+this->name.length(), &this->pos.y, 4);
 }
 
@@ -63,6 +63,6 @@
    memcpy(&this->id, buffer, 4);
    strcpy(test, buffer+4);
-   memcpy(&this->pos.x, buffer+4+strlen(test), 4);
-   memcpy(&this->pos.y, buffer+8+strlen(test), 4);
+   memcpy(&this->pos.x, buffer+5+strlen(test), 4);
+   memcpy(&this->pos.y, buffer+9+strlen(test), 4);
 
    cout << "id: " << this->id << endl;
