diff options
Diffstat (limited to 'src/base/proto.c')
| -rw-r--r-- | src/base/proto.c | 4 |
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); |