diff options
author | Aki <nthirtyone@gmail.com> | 2017-02-26 01:28:08 +0100 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-02-26 01:28:08 +0100 |
commit | f6931cb1bda8c7ec1301f359f28ecc3b1fdb1566 (patch) | |
tree | e6b51ec7a27dba06c79ec7e7f500a100fd82594a /world.lua | |
parent | 0b287c4750553ab72c04680378487b9d11cd0b43 (diff) | |
download | roflnauts-f6931cb1bda8c7ec1301f359f28ecc3b1fdb1566.zip roflnauts-f6931cb1bda8c7ec1301f359f28ecc3b1fdb1566.tar.gz roflnauts-f6931cb1bda8c7ec1301f359f28ecc3b1fdb1566.tar.bz2 |
Ground => Platform
Diffstat (limited to 'world.lua')
-rw-r--r-- | world.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ -- WHOLE CODE HAS FLAG OF "need a cleanup" -require "ground" +require "platform" require "player" require "cloud" require "effect" @@ -126,7 +126,7 @@ end -- Add new platform to the world function World:createPlatform(x, y, polygon, sprite, animations) - table.insert(self.Platforms, Ground:new(self, self.world, x, y, polygon, sprite, animations)) + table.insert(self.Platforms, Platform:new(self, self.world, x, y, polygon, sprite, animations)) end -- Add new naut to the world |