summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-12 16:04:32 +0000
committertruelight <truelight@openttd.org>2004-12-12 16:04:32 +0000
commit0e79314353e7cf50677125c362835aabc475631c (patch)
treefca8d0b096bbb58854b3d8bb840a8213aa9f8395 /console_cmds.c
parent5221f35182beb396615dc8bcd2e902828a83aa65 (diff)
downloadopenttd-0e79314353e7cf50677125c362835aabc475631c.tar.xz
(svn r1026) -Add: [Network] Added unique id, so in network, each client has an
unique id (generated via md5)
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/console_cmds.c b/console_cmds.c
index 0d6c9206e..d69cc11ca 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -175,8 +175,8 @@ DEF_CONSOLE_CMD(ConStatus)
status = "unknown";
break;
}
- IConsolePrintF(8, "Client #%d/%s status: %s frame-lag: %d play-as: %d",
- cs->index, ci->client_name, status, lag, ci->client_playas);
+ IConsolePrintF(8, "Client #%d/%s status: %s frame-lag: %d play-as: %d unique-id: %s",
+ cs->index, ci->client_name, status, lag, ci->client_playas, ci->unique_id);
}
return NULL;