diff options
author | Aki <nthirtyone@gmail.com> | 2017-04-08 20:38:45 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-04-08 20:38:45 +0200 |
commit | a03c1125f10fbbad253a0efc4727072fcbd55345 (patch) | |
tree | 8d270eb07f589d2487b3ce66d4865e5a4718042a /not/Hero.lua | |
parent | 1c3040de93f9d5a164ccb06194eacc28eead0234 (diff) | |
download | roflnauts-a03c1125f10fbbad253a0efc4727072fcbd55345.zip roflnauts-a03c1125f10fbbad253a0efc4727072fcbd55345.tar.gz roflnauts-a03c1125f10fbbad253a0efc4727072fcbd55345.tar.bz2 |
Moved configs from root directory to config directory
Diffstat (limited to 'not/Hero.lua')
-rw-r--r-- | not/Hero.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/not/Hero.lua b/not/Hero.lua index 4150024..feb61da 100644 --- a/not/Hero.lua +++ b/not/Hero.lua @@ -28,7 +28,7 @@ Hero = { portrait_frame = nil, portrait_sheet = getNautsIconsList(), portrait_box = love.graphics.newQuad( 0, 15, 32,32, 80,130), - sfx = require "sounds", + sfx = require "config.sounds", } -- `Hero` is a child of `PhysicalBody`. @@ -68,7 +68,7 @@ function Hero:init (name, world, x, y) self.world = world self.punchCooldown = 0 self.name = name - self:setAnimationsList(require("animations")) + self:setAnimationsList(require("config.animations.hero")) self:createEffect("respawn") end |