summaryrefslogtreecommitdiff
path: root/builtin/mainmenu/dlg_create_world.lua
diff options
context:
space:
mode:
authorrubenwardy <rubenwardy@gmail.com>2014-10-16 19:23:02 +0100
committerkwolekr <kwolekr@minetest.net>2014-10-28 13:17:14 -0400
commit9bb6648f2623a35190a9b1a858ccae1d6cc0bc15 (patch)
tree2a07bd076f2aa337d1da748fe4934bf302fdb431 /builtin/mainmenu/dlg_create_world.lua
parent4a3592ff9a10767c2831b569a316560a7d30577d (diff)
downloadminetest-9bb6648f2623a35190a9b1a858ccae1d6cc0bc15.tar.gz
minetest-9bb6648f2623a35190a9b1a858ccae1d6cc0bc15.tar.bz2
minetest-9bb6648f2623a35190a9b1a858ccae1d6cc0bc15.zip
Add notice when only minimal is installed
Diffstat (limited to 'builtin/mainmenu/dlg_create_world.lua')
-rw-r--r--builtin/mainmenu/dlg_create_world.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/builtin/mainmenu/dlg_create_world.lua b/builtin/mainmenu/dlg_create_world.lua
index 5771d8b27..6d433bde4 100644
--- a/builtin/mainmenu/dlg_create_world.lua
+++ b/builtin/mainmenu/dlg_create_world.lua
@@ -62,6 +62,16 @@ local function create_world_formspec(dialogdata)
"button[5,5.5;2.6,0.5;world_create_confirm;" .. fgettext("Create") .. "]" ..
"button[7.5,5.5;2.8,0.5;world_create_cancel;" .. fgettext("Cancel") .. "]"
+
+ if #gamemgr.games == 0 then
+ retval = retval .. "box[2,4;8,1;#ff8800]label[2.25,4;" ..
+ fgettext("You have no subgames installed.") .. "]label[2.25,4.4;" ..
+ fgettext("Download one from minetest.net") .. "]"
+ elseif #gamemgr.games == 1 and gamemgr.games[1].id == "minimal" then
+ retval = retval .. "box[1.75,4;8.7,1;#ff8800]label[2,4;" ..
+ fgettext("Warning: The minimal development test is meant for developers.") .. "]label[2,4.4;" ..
+ fgettext("Download a subgame, such as minetest_game, from minetest.net") .. "]"
+ end
return retval