Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-17 18:59:52 +0000
committerStijn Buys <ingar@osirion.org>2008-02-17 18:59:52 +0000
commit982562fa19bb87a3dab352e562f386f61c171b7b (patch)
treeaeade8d5b7d3c68f5c222af1d8ecc6a734e1b43f /src/core/netclient.cc
parentd198b7b8d9ff713d891f35ab173d1f428f610e7d (diff)
major rewrite of Cvar, Func and Entity
Diffstat (limited to 'src/core/netclient.cc')
-rw-r--r--src/core/netclient.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/netclient.cc b/src/core/netclient.cc
index e2a9b7e..61a3e64 100644
--- a/src/core/netclient.cc
+++ b/src/core/netclient.cc
@@ -21,8 +21,8 @@ NetClient::NetClient(int clientfd, std::string host, int port) :
std::ostringstream osstream;
//osstream << "host << ":" << port;
osstream << "Player" << clientfd;
- client_player.name = osstream.str();
- client_player.id = (unsigned int) clientfd;
+ client_player.player_name = osstream.str();
+ client_player.player_id = (unsigned int) clientfd;
client_host = host;
client_port = port;
@@ -43,9 +43,9 @@ int NetClient::port() const
return client_port;
}
-Player &NetClient::player()
+Player *NetClient::player()
{
- return client_player;
+ return &client_player;
}
bool NetClient::has_messages() const {