fix luactontroller tool, untested

This commit is contained in:
HybridDog 2016-02-06 12:00:37 +01:00
parent c142664c26
commit 8f303f1b2a
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ minetest.register_tool("moremesecons_luacontroller_tool:lctt", {
pdata[pname] = pdata[pname] or {
pos = pos,
player_name = pname,
template_name = next(templates[pname]),
template_name = next(templates[pname] or templates[next(templates)]),
}
minetest.show_formspec(pname, "moremesecons:luacontroller_tool", get_selection_formspec(pdata[pname].player_name, pdata[pname].template_name))
end,