summaryrefslogtreecommitdiffhomepage
path: root/main.lua
diff options
context:
space:
mode:
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