diff options
author | Aki <nthirtyone@gmail.com> | 2016-05-26 17:22:48 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2016-05-26 17:22:48 +0200 |
commit | 6672ea6ee588452fbbbd6996af160e4059643d16 (patch) | |
tree | ad7aa9b233289409e0efa655c2c2c9c4d1143114 /main.lua | |
parent | d82539a68559c79f3c5488d585354dfcb4f072ad (diff) | |
download | roflnauts-6672ea6ee588452fbbbd6996af160e4059643d16.zip roflnauts-6672ea6ee588452fbbbd6996af160e4059643d16.tar.gz roflnauts-6672ea6ee588452fbbbd6996af160e4059643d16.tar.bz2 |
F5 fixed, really.
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -55,10 +55,10 @@ function love.keypressed (key) end if key == "f5" and debug then local new = World:new("default", "leon", "lonestar", third, fourth) - w.Nauts[1]:assignController(cont1) - w.Nauts[2]:assignController(cont2) w = nil w = new + w.Nauts[1]:assignController(cont1) + w.Nauts[2]:assignController(cont2) end end |