summaryrefslogtreecommitdiffhomepage
path: root/main.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2016-07-31 09:00:57 +0200
committerAki <nthirtyone@gmail.com>2016-07-31 09:00:57 +0200
commit95751a8ba1a2881972ab50fabc72526ee989a29f (patch)
treebf126a8a7c4e42f238ab5178d9bb01e8d67329f4 /main.lua
parentd38941d363842f547ba3cd681ca22f2014f1ba49 (diff)
downloadroflnauts-95751a8ba1a2881972ab50fabc72526ee989a29f.zip
roflnauts-95751a8ba1a2881972ab50fabc72526ee989a29f.tar.gz
roflnauts-95751a8ba1a2881972ab50fabc72526ee989a29f.tar.bz2
Map restart
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index 95ce865..445ed6f 100644
--- a/main.lua
+++ b/main.lua
@@ -106,7 +106,12 @@ function love.keypressed(key)
love.event.quit()
end
if key == "f6" and debug then
- local new = World:new("default", {"link", Controllers[1]}, {"weed", Controllers[2]})
+ local map = Scene:getMapName()
+ local nauts = {}
+ for _,naut in pairs(Scene:getNautsAll()) do
+ table.insert(nauts, {naut.name, naut.controller})
+ end
+ local new = World:new(map, nauts)
Scene:delete()
changeScene(new)
end