summaryrefslogtreecommitdiff
path: root/network_server.c
diff options
context:
space:
mode:
authormiham <miham@openttd.org>2004-12-29 13:13:29 +0000
committermiham <miham@openttd.org>2004-12-29 13:13:29 +0000
commit57852f64988b92fa7d9031ea76aa89b67d08c4f6 (patch)
tree66526ea5c00e53199cc02447a0970c13b4e8175e /network_server.c
parent14dfb539b06bb9ad411dbcf6e4141f189713a099 (diff)
downloadopenttd-57852f64988b92fa7d9031ea76aa89b67d08c4f6.tar.xz
(svn r1297) Language fixes in the source.. (ln-)
Diffstat (limited to 'network_server.c')
-rw-r--r--network_server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/network_server.c b/network_server.c
index fc24b6ce9..d8d3d56a5 100644
--- a/network_server.c
+++ b/network_server.c
@@ -1372,7 +1372,7 @@ bool NetworkFindName(char new_name[NETWORK_CLIENT_NAME_LENGTH])
if (!found_name) {
// Try a new name (<name> #1, <name> #2, and so on)
- // Stop if we tried for more then 50 times..
+ // Stop if we tried for more than 50 times..
if (number++ > 50) break;
snprintf(new_name, NETWORK_CLIENT_NAME_LENGTH, "%s #%d", original_name, number);
}
@@ -1450,7 +1450,7 @@ void NetworkServer_Tick(void)
if (lag > 3) {
// Client did still not report in after 4 game-day, drop him
// (that is, the 3 of above, + 1 before any lag is counted)
- IConsolePrintF(_iconsole_color_error,"Client #%d is dropped because the client did not respond for more then 4 game-days", cs->index);
+ IConsolePrintF(_iconsole_color_error,"Client #%d is dropped because the client did not respond for more than 4 game-days", cs->index);
NetworkCloseClient(cs);
continue;
}