diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-07 04:45:33 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-07 04:45:33 +0200 |
commit | 37da34f0dbc6f6fe58629e52a7126caed4f10434 (patch) | |
tree | 53774ba4d9bc3230459d5f379ddefd8d062ac605 /not | |
parent | ffce9a325fb5947996bacc9e2d6d19bcef900875 (diff) | |
download | roflnauts-37da34f0dbc6f6fe58629e52a7126caed4f10434.zip roflnauts-37da34f0dbc6f6fe58629e52a7126caed4f10434.tar.gz roflnauts-37da34f0dbc6f6fe58629e52a7126caed4f10434.tar.bz2 |
Renamed filepath to filename
Diffstat (limited to 'not')
-rw-r--r-- | not/World.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/not/World.lua b/not/World.lua index ebc7d9f..0d65d7e 100644 --- a/not/World.lua +++ b/not/World.lua @@ -336,8 +336,9 @@ end -- Controller callbacks function World:controlpressed (set, action, key) if key == "f6" and debug then - local map = love.filesystem.load(self.map.filepath)() - map.filepath = self.map.filepath + local filename = self.map.filename + local map = love.filesystem.load(filename)() + map.filename = filename local nauts = {} for _,naut in pairs(self:getNautsAll()) do table.insert(nauts, {naut.name, naut:getControllerSet()}) |