diff options
author | Aki <nthirtyone@gmail.com> | 2017-07-12 11:09:05 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-07-12 11:09:05 +0200 |
commit | 6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513 (patch) | |
tree | a93776e6f624773cbf11aeb53ed4c4ef05500d4f /config/menus | |
parent | ea694c3659c801effaaf3361d3713f20517de3f5 (diff) | |
download | roflnauts-6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513.zip roflnauts-6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513.tar.gz roflnauts-6c6e2fe6ec84ec57f6336fa9d6e4136c0e1c9513.tar.bz2 |
All changeScene calls replaced with proper SceneManager calls
Diffstat (limited to 'config/menus')
-rw-r--r-- | config/menus/select.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/menus/select.lua b/config/menus/select.lua index 431e620..037b798 100644 --- a/config/menus/select.lua +++ b/config/menus/select.lua @@ -36,7 +36,7 @@ return { :set("active", function (self) local nauts = naut_Selector:getFullSelection(false) if #nauts > 1 then - changeScene(World(MAP, nauts)) + sceneManager:changeScene(World(MAP, nauts)) end end) , @@ -73,4 +73,4 @@ return { end end) , -}
\ No newline at end of file +} |