Skip to content

Commit

Permalink
Add notice when only minimal is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy authored and kwolekr committed Oct 28, 2014
1 parent 4a3592f commit 9bb6648
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions builtin/mainmenu/dlg_create_world.lua
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion builtin/mainmenu/gamemgr.lua
Expand Up @@ -68,7 +68,7 @@ end
function gamemgr.gamelist()
local retval = ""
if #gamemgr.games > 0 then
retval = retval .. gamemgr.games[1].id
retval = retval .. gamemgr.games[1].name

for i=2,#gamemgr.games,1 do
retval = retval .. "," .. gamemgr.games[i].name
Expand Down

0 comments on commit 9bb6648

Please sign in to comment.