From: paradust7 <102263465+paradust7@users.noreply.github.com> Date: Sat, 18 Feb 2023 15:47:08 +0000 (-0800) Subject: Fix typo and missing entry in serveropcodes X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=aa5dc0968befddc0343070988efe4c3801858193;p=minetest.git Fix typo and missing entry in serveropcodes --- 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 };