summaryrefslogtreecommitdiffhomepage
path: root/not/Hero.lua
diff options
context:
space:
mode:
Diffstat (limited to 'not/Hero.lua')
-rw-r--r--not/Hero.lua4
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