diff options
Diffstat (limited to 'world.lua')
-rw-r--r-- | world.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ end -- Add new naut to the world function World:createNaut(x, y, sprite) - table.insert(self.Nauts, Player:new(self.world, x, y, sprite)) + table.insert(self.Nauts, Player:new(self, self.world, x, y, sprite)) end -- Add new cloud to the world |