From a57677120a6c675176ba89c1202680703cc8af48 Mon Sep 17 00:00:00 2001 From: "Miguel P.L" <99091580+MiguelPL4@users.noreply.github.com> Date: Sat, 15 Feb 2025 11:20:45 -0600 Subject: [PATCH] Correct keycode URL in settingtypes.txt/minetest.conf.example (#15784) --- builtin/common/settings/generate_from_settingtypes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/common/settings/generate_from_settingtypes.lua b/builtin/common/settings/generate_from_settingtypes.lua index 52dfe71b1..58f2c3301 100644 --- a/builtin/common/settings/generate_from_settingtypes.lua +++ b/builtin/common/settings/generate_from_settingtypes.lua @@ -61,7 +61,7 @@ local function create_minetest_conf_example(settings) end end if entry.type == "key" then - local line = "See https://github.com/minetest/irrlicht/blob/master/include/Keycodes.h" + local line = "See https://github.com/luanti-org/luanti/blob/master/irr/include/Keycodes.h" insert(result, "# " .. line .. "\n") end insert(result, "# type: " .. entry.type)