diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-05 01:24:02 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-05 01:24:02 +0200 |
commit | b117c29325698e56a4fbd76426739dd48fa154cb (patch) | |
tree | 02f08cea1b5c002d9ebb298b55f3202e3d04f47f /config/menus | |
parent | fc16ad592a45648c7df7cc18c2b6cd153af238e3 (diff) | |
download | roflnauts-b117c29325698e56a4fbd76426739dd48fa154cb.zip roflnauts-b117c29325698e56a4fbd76426739dd48fa154cb.tar.gz roflnauts-b117c29325698e56a4fbd76426739dd48fa154cb.tar.bz2 |
Map config table is now passed to World rather than map name
Diffstat (limited to 'config/menus')
-rw-r--r-- | config/menus/host.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/menus/host.lua b/config/menus/host.lua index 8054942..1ac4b0f 100644 --- a/config/menus/host.lua +++ b/config/menus/host.lua @@ -44,7 +44,7 @@ return { return mapSelector:getLocked() end) :set("active", function (self) - MAP = mapSelector:getSelected().name -- TODO: It uses map name for compatibility with old code. + MAP = mapSelector:getSelected() self.parent:open("select") end) , |