summaryrefslogtreecommitdiff
path: root/dispatcherfw.lua
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2024-08-20 18:39:56 -0500
committercheapie <no-email-for-you@example.com>2024-08-20 18:39:56 -0500
commit070812b1c8f6c95e868c1b26f1dc53ea463c7f3e (patch)
tree5d51154cac9691b6af3390e4b8aec12e9df678b5 /dispatcherfw.lua
parent36081667f37c8dc351cfbcbf977731e599c83492 (diff)
downloadcelevator-070812b1c8f6c95e868c1b26f1dc53ea463c7f3e.tar
celevator-070812b1c8f6c95e868c1b26f1dc53ea463c7f3e.tar.gz
celevator-070812b1c8f6c95e868c1b26f1dc53ea463c7f3e.tar.bz2
celevator-070812b1c8f6c95e868c1b26f1dc53ea463c7f3e.tar.xz
celevator-070812b1c8f6c95e868c1b26f1dc53ea463c7f3e.zip
Fix license info button
This was broken by the license file name change during the ContentDB listing process
Diffstat (limited to 'dispatcherfw.lua')
-rw-r--r--dispatcherfw.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatcherfw.lua b/dispatcherfw.lua
index 82a4a35..97a4127 100644
--- a/dispatcherfw.lua
+++ b/dispatcherfw.lua
@@ -901,7 +901,7 @@ if mem.screenstate == "oobe_welcome" then
fs("button[1,10;2,1;license;License Info]")
fs("button[13,10;2,1;next;Next >]")
elseif mem.screenstate == "oobe_license" then
- local licensefile = io.open(minetest.get_modpath("celevator")..DIR_DELIM.."COPYING")
+ local licensefile = io.open(minetest.get_modpath("celevator")..DIR_DELIM.."LICENSE")
local license = minetest.formspec_escape(licensefile:read("*all"))
licensefile:close()
fs("textarea[1,1;14,8;license;This applies to the whole celevator mod\\, not just this dispatcher:;"..license.."]")