move up menu, still need a higher level function

This commit is contained in:
Henrique Santiago
2012-04-24 18:15:51 -03:00
parent 9aa12acc22
commit 49fbbf6506
3 changed files with 9 additions and 3 deletions

View File

@@ -165,7 +165,13 @@ function GameInterface.createThingMenu(menuPosition, lookThing, useThing, creatu
menu:addOption('Trade with ...', function() print('trade with') end)
end
-- check for move up
if lookThing then
local parentContainer = lookThing:getParentContainer()
if parentContainer and parentContainer:hasParent() then
local pos = lookThing:getPosition()
menu:addOption('Move up', function() g_game.move(lookThing, { x=pos.x, y=pos.y, z=254 }, lookThing:getCount()) end)
end
end
if creatureThing then
menu:addSeparator()