Small change
This commit is contained in:
parent
e89fa5f15c
commit
d7855c69c2
2 changed files with 8 additions and 5 deletions
|
@ -65,6 +65,7 @@ m.mousepressed = window.mousepressed(function (self, x, y, button)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
function m:install(room, x, y)
|
function m:install(room, x, y)
|
||||||
|
self.room = room
|
||||||
self:setpos(x, y)
|
self:setpos(x, y)
|
||||||
room:insert(self)
|
room:insert(self)
|
||||||
end
|
end
|
||||||
|
|
12
item.lua
12
item.lua
|
@ -30,12 +30,14 @@ function m:itemMode()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local install = m.install
|
||||||
function m:install(room, x, y)
|
function m:install(room, x, y)
|
||||||
local i = self:new()
|
self:pickupMode()
|
||||||
i.room = room
|
install(self, room, x, y)
|
||||||
i:pickupMode()
|
end
|
||||||
i:setpos(x, y)
|
|
||||||
room:insert(i)
|
function m:spawn(room, x, y)
|
||||||
|
self:new():install(room, x, y)
|
||||||
end
|
end
|
||||||
|
|
||||||
return m
|
return m
|
||||||
|
|
Loading…
Add table
Reference in a new issue