diff options
author | BlockMen <nmuelll@web.de> | 2013-11-19 15:39:40 +0100 |
---|---|---|
committer | BlockMen <nmuelll@web.de> | 2013-11-19 15:39:40 +0100 |
commit | 0c8bf7cf949d56571e327a0c62b2e5564fb2d796 (patch) | |
tree | 26b17f9ec4a455154bd9f63e42e16307a466aed4 | |
parent | 0930911efa35344d40b3977882ed516ab6ae1088 (diff) | |
download | minetest-0c8bf7cf949d56571e327a0c62b2e5564fb2d796.tar.gz minetest-0c8bf7cf949d56571e327a0c62b2e5564fb2d796.tar.bz2 minetest-0c8bf7cf949d56571e327a0c62b2e5564fb2d796.zip |
Fix modmanager screenshot path
-rw-r--r-- | builtin/modmgr.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/modmgr.lua b/builtin/modmgr.lua index 490336f06..611032d4a 100644 --- a/builtin/modmgr.lua +++ b/builtin/modmgr.lua @@ -267,7 +267,7 @@ function modmgr.tab() end retval = retval - .. "image[5.5,0;3,2;" .. modscreenshot .. "]" + .. "image[5.5,0;3,2;" .. engine.formspec_escape(modscreenshot) .. "]" .. "label[8.25,0.6;" .. selected_mod.name .. "]" local descriptionlines = nil |