Skip to content

Commit

Permalink
fix incorrect path to utils.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
HDictus committed Jun 29, 2019
1 parent f147728 commit b6aabfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion collider.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- a Collider object, wrapping shape, body, and fixtue
local set_funcs, lp, lg = unpack(require("utils"))
local set_funcs, lp, lg = unpack(require("breezefield/utils"))

local Collider = {}
Collider.__index = Collider
Expand Down
2 changes: 1 addition & 1 deletion world.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
--]]
-- TODO make updating work from here too

local set_funcs, lp, lg = unpack(require("utils"))
local set_funcs, lp, lg = unpack(require("breezefield/utils"))
local mlib = require('mlib/mlib')
-- NOTE for now use handy mlib functions, but maybe change later
-- they are a little overkill
Expand Down

0 comments on commit b6aabfb

Please sign in to comment.