summaryrefslogtreecommitdiff
path: root/src/base/proto.c
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2008-10-25 11:58:43 +0200
committerxHire <xhire@tuxportal.cz>2008-10-25 11:58:43 +0200
commit03daa19ec574dcab59e89566a8062b60b16a8325 (patch)
tree702273f2e42d4e483a5262f66660d8b3329e558e /src/base/proto.c
parent4b4a75f6ced29923777d0dd7e27fdd4bbfed800a (diff)
Translated all game into Czech + some small fixes
Updated scripts Correction: "Height Score" -> "High Score" Set right file permissions
Diffstat (limited to 'src/base/proto.c')
-rw-r--r--src/base/proto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/proto.c b/src/base/proto.c
index c54c092..7c510c5 100644
--- a/src/base/proto.c
+++ b/src/base/proto.c
@@ -33,7 +33,7 @@
#endif
#ifdef PUBLIC_SERVER
-#include "heightScore.h"
+#include "highScore.h"
#include "publicServer.h"
#include "serverConfigFile.h"
#endif
@@ -298,7 +298,7 @@ proto_recv_listscore_server(client_t * client, char *msg)
recv_count = sscanf(msg, "%s %d", cmd, &max);
if (recv_count != 2) {
- max = HEIGHTSCORE_MAX_PLAYERS;
+ max = HIGHSCORE_MAX_PLAYERS;
}
proto_send_listscore_server(PROTO_SEND_ONE, client, max);