aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparadust7 <102263465+paradust7@users.noreply.github.com>2023-02-18 07:47:08 -0800
committerGitHub <noreply@github.com>2023-02-18 16:47:08 +0100
commitaa5dc0968befddc0343070988efe4c3801858193 (patch)
treeccfed0a322ed81ede6ad567eb73d3db45ee88e37
parent3bafbaac49e3d5d1d633b26f60fd4e919399819b (diff)
downloadminetest-aa5dc0968befddc0343070988efe4c3801858193.tar.xz
Fix typo and missing entry in serveropcodes
-rw-r--r--src/network/serveropcodes.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/serveropcodes.cpp b/src/network/serveropcodes.cpp
index 12665e7f1..cd2ff64fd 100644
--- a/src/network/serveropcodes.cpp
+++ b/src/network/serveropcodes.cpp
@@ -219,7 +219,8 @@ const ClientCommandFactory clientCommandFactoryTable[TOCLIENT_NUM_MSG_TYPES] =
null_command_factory, // 0x5d
null_command_factory, // 0x5e
null_command_factory, // 0x5f
- { "TOSERVER_SRP_BYTES_S_B", 0, true }, // 0x60
+ { "TOCLIENT_SRP_BYTES_S_B", 0, true }, // 0x60
{ "TOCLIENT_FORMSPEC_PREPEND", 0, true }, // 0x61
{ "TOCLIENT_MINIMAP_MODES", 0, true }, // 0x62
+ { "TOCLIENT_SET_LIGHTING", 0, true }, // 0x63
};